mirror of
https://github.com/Anil-matcha/Open-Generative-AI.git
synced 2026-05-07 01:17:18 +00:00
17 lines
352 B
JavaScript
17 lines
352 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./src/**/*.{js,jsx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'app-bg': '#050505',
|
|
'panel-bg': '#0a0a0a',
|
|
'card-bg': '#111111',
|
|
primary: '#d9ff00',
|
|
secondary: '#a1a1aa',
|
|
muted: '#52525b',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|