bonfire/tailwind.config.ts

31 lines
611 B
TypeScript
Raw Permalink Normal View History

2025-01-18 16:27:18 +03:30
import containerQueries from '@tailwindcss/container-queries';
import typography from '@tailwindcss/typography';
import type { Config } from 'tailwindcss';
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
2025-02-23 20:40:25 +03:30
extend: {},
2025-04-25 14:18:13 +03:30
colors: {
foundation: '#282828',
primary: '#282828',
secondary: '#000000',
accent: '#ff0000',
2025-02-23 20:40:25 +03:30
2025-04-25 14:18:13 +03:30
neutral: '#000000',
2025-02-23 20:40:25 +03:30
2025-04-25 14:18:13 +03:30
primary_text: '#fbf1c7',
muted_text: '#a89984',
accent_text: '#fb4934',
2025-02-23 20:40:25 +03:30
2025-04-25 14:18:13 +03:30
red: '#000000',
green: '#000000',
2025-08-20 22:25:31 +03:30
blue: '#83a598',
2025-04-25 14:18:13 +03:30
yellow: '#000000'
}
2025-01-18 16:27:18 +03:30
},
plugins: [typography, containerQueries]
} satisfies Config;