-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.mjs
More file actions
44 lines (43 loc) · 1.15 KB
/
tailwind.config.mjs
File metadata and controls
44 lines (43 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/**
* Tailwind CSS configuration for Cereyan
* @see https://tailwindcss.com/docs/configuration
*/
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
colors: {
// Brand accent color
cereyan: {
pink: '#C74B9B',
'pink-light': '#D86AAF',
'pink-dark': '#A33D80',
},
// Light theme palette
surface: {
DEFAULT: '#FFFFFF', // Page background
card: '#F9FAFB', // Card background (subtle gray)
muted: '#F3F4F6', // Secondary surfaces
},
border: {
DEFAULT: '#E5E7EB',
light: '#F3F4F6',
},
text: {
DEFAULT: '#171717', // Primary text
muted: '#737373', // Secondary text
},
},
fontFamily: {
sans: ['DM Sans', 'system-ui', 'sans-serif'],
display: ['Instrument Serif', 'Georgia', 'serif'],
mono: ['IBM Plex Mono', 'monospace'],
},
letterSpacing: {
'widest-xl': '0.25em',
},
},
},
plugins: [],
};