mirror of
https://github.com/dergigi/boris.git
synced 2025-12-17 06:34:24 +01:00
36 lines
1.1 KiB
JavaScript
36 lines
1.1 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
'./index.html',
|
|
'./src/**/*.{ts,tsx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
// Semantic color aliases for the app
|
|
'app-bg': '#18181b', // zinc-900
|
|
'app-bg-elevated': '#27272a', // zinc-800
|
|
'app-bg-subtle': '#1e1e1e', // Custom between 800-900
|
|
'app-border': '#3f3f46', // zinc-700
|
|
'app-border-subtle': '#52525b', // zinc-600
|
|
'app-text': '#e4e4e7', // zinc-200
|
|
'app-text-secondary': '#a1a1aa', // zinc-400
|
|
'app-text-muted': '#71717a', // zinc-500
|
|
'primary': '#6366f1', // indigo-500
|
|
'primary-hover': '#4f46e5', // indigo-600
|
|
'highlight-mine': '#fde047', // yellow-300
|
|
'highlight-friends': '#f97316', // orange-500
|
|
'highlight-nostrverse': '#9333ea', // purple-600
|
|
},
|
|
keyframes: {
|
|
shimmer: {
|
|
'0%': { transform: 'translateX(-100%)' },
|
|
'100%': { transform: 'translateX(100%)' },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|