-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
55 lines (55 loc) · 1.72 KB
/
Copy pathtailwind.config.js
File metadata and controls
55 lines (55 loc) · 1.72 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
45
46
47
48
49
50
51
52
53
54
55
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./_includes/**/*.{html,md,pug}',
'./_layouts/**/*.{html,md,pug}',
'./_posts/**/*.{html,md}',
'./_projects/**/*.{html,md}',
'./_notes/**/*.{html,md}',
'./pages/**/*.{html,md,pug}',
'./*.{html,md,pug}'
],
darkMode: 'media', // Respects system dark mode preference
theme: {
extend: {
colors: {
primary: {
DEFAULT: 'rgb(var(--primary) / <alpha-value>)',
light: 'rgb(var(--primary) / 0.1)',
},
secondary: {
DEFAULT: 'rgb(var(--secondary) / <alpha-value>)',
},
accent: {
DEFAULT: 'rgb(var(--accent) / <alpha-value>)',
},
text: {
DEFAULT: 'rgb(var(--text) / <alpha-value>)',
},
background: 'rgb(var(--background) / <alpha-value>)',
surface: 'rgb(var(--surface) / <alpha-value>)',
border: 'rgb(var(--border) / <alpha-value>)',
success: {
DEFAULT: 'rgb(var(--success) / <alpha-value>)',
light: 'rgb(var(--success) / 0.1)',
},
warning: {
DEFAULT: 'rgb(var(--warning) / <alpha-value>)',
light: 'rgb(var(--warning) / 0.1)',
},
info: {
DEFAULT: 'rgb(var(--info) / <alpha-value>)',
light: 'rgb(var(--info) / 0.1)',
}
},
fontFamily: {
// Bob's Builder Theme Typography
sans: ['Inter', 'ui-sans-serif', 'system-ui', 'sans-serif'],
heading: ['Montserrat', 'ui-sans-serif', 'system-ui', 'sans-serif'],
display: ['Bebas Neue', 'ui-sans-serif', 'system-ui', 'sans-serif'],
mono: ['JetBrains Mono', 'ui-monospace', 'monospace'],
}
}
},
plugins: [],
}