-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
64 lines (64 loc) · 2.99 KB
/
tailwind.config.cjs
File metadata and controls
64 lines (64 loc) · 2.99 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
56
57
58
59
60
61
62
63
64
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/**/*.{ts,tsx,js,jsx}'],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
display: ['"Space Grotesk"', 'ui-sans-serif', 'system-ui'],
body: ['"IBM Plex Sans"', 'ui-sans-serif', 'system-ui'],
},
colors: {
background: 'rgb(var(--app-bg) / <alpha-value>)',
surface: {
DEFAULT: 'rgb(var(--color-surface) / <alpha-value>)',
muted: 'rgb(var(--color-surface-muted) / <alpha-value>)',
subtle: 'rgb(var(--color-surface-subtle) / <alpha-value>)',
},
border: {
DEFAULT: 'rgb(var(--color-border) / <alpha-value>)',
},
text: {
DEFAULT: 'rgb(var(--color-text) / <alpha-value>)',
muted: 'rgb(var(--color-text-muted) / <alpha-value>)',
subtle: 'rgb(var(--color-text-subtle) / <alpha-value>)',
inverse: 'rgb(var(--color-text-inverse) / <alpha-value>)',
},
accent: {
DEFAULT: 'rgb(var(--color-accent) / <alpha-value>)',
strong: 'rgb(var(--color-accent-strong) / <alpha-value>)',
foreground: 'rgb(var(--color-accent-foreground) / <alpha-value>)',
},
secondary: {
DEFAULT: 'rgb(var(--color-secondary) / <alpha-value>)',
foreground: 'rgb(var(--color-secondary-foreground) / <alpha-value>)',
},
danger: {
DEFAULT: 'rgb(var(--color-danger) / <alpha-value>)',
strong: 'rgb(var(--color-danger-strong) / <alpha-value>)',
foreground: 'rgb(var(--color-danger-foreground) / <alpha-value>)',
},
warning: {
DEFAULT: 'rgb(var(--color-warning) / <alpha-value>)',
strong: 'rgb(var(--color-warning-strong) / <alpha-value>)',
foreground: 'rgb(var(--color-warning-foreground) / <alpha-value>)',
},
success: {
DEFAULT: 'rgb(var(--color-success) / <alpha-value>)',
strong: 'rgb(var(--color-success-strong) / <alpha-value>)',
foreground: 'rgb(var(--color-success-foreground) / <alpha-value>)',
},
info: {
DEFAULT: 'rgb(var(--color-info) / <alpha-value>)',
},
ring: 'rgb(var(--color-ring) / <alpha-value>)',
overlay: 'rgb(var(--color-overlay) / <alpha-value>)',
contrast: {
DEFAULT: 'rgb(var(--color-contrast) / <alpha-value>)',
foreground: 'rgb(var(--color-contrast-foreground) / <alpha-value>)',
},
},
},
},
plugins: [],
}