-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathtailwind.config.mjs
More file actions
36 lines (36 loc) · 947 Bytes
/
tailwind.config.mjs
File metadata and controls
36 lines (36 loc) · 947 Bytes
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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
darkMode: 'class',
theme: {
extend: {
colors: {
bg: {
DEFAULT: 'var(--bg)',
card: 'var(--bg-card)',
hover: 'var(--bg-hover)',
nav: 'var(--bg-nav)',
},
border: 'var(--border)',
text: {
DEFAULT: 'var(--text)',
dim: 'var(--text-dim)',
muted: 'var(--text-muted)',
},
accent: {
DEFAULT: '#6366f1',
light: '#818cf8',
glow: 'rgba(99, 102, 241, 0.15)',
},
green: '#22c55e',
orange: '#f59e0b',
pink: '#ec4899',
},
fontFamily: {
sans: ['-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Noto Sans SC', 'sans-serif'],
mono: ['SF Mono', 'Fira Code', 'monospace'],
},
},
},
plugins: [],
};