llm_council_prem / tailwind.config.js
LLM Council Deployer
initial push
41f0f2e
raw
history blame contribute delete
587 Bytes
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./assets/**/*.{js,jsx,ts,tsx}",
"./templates/**/*.html",
],
theme: {
extend: {
colors: {
// Notion/ChatGPT-like dark mode colors
gray: {
850: '#1f2023',
900: '#191919',
950: '#101010',
}
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
}
},
},
plugins: [],
}