-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
52 lines (52 loc) · 1.33 KB
/
Copy pathtailwind.config.js
File metadata and controls
52 lines (52 loc) · 1.33 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
grotesk: ['Space Grotesk', 'sans-serif'],
mono: ['JetBrains Mono', 'monospace'],
serif: ['Instrument Serif', 'serif'],
},
colors: {
ink: {
900: '#0b0b0f', // app bg
850: '#101013', // frame
800: '#131317', // footer
750: '#16161a', // rail / panel
700: '#1b1b21', // card
650: '#1f1f26', // card selected
600: '#2c2c34', // track / pill
},
line: {
DEFAULT: '#24242b',
soft: '#1e1e24',
strong: '#33333d',
},
fg: {
DEFAULT: '#f5f4f2',
muted: '#a8a6a1',
dim: '#8f8d88',
faint: '#7e7c77',
},
lime: {
DEFAULT: '#c6f24e',
bright: '#e4ff9b',
ink: '#12140a',
},
mesh: {
pink: '#ff3d6e',
purple: '#7c4dff',
teal: '#00d2c6',
lime: '#c6f24e',
orange: '#ff9a3d',
},
},
boxShadow: {
stage: '0 40px 80px -30px rgba(0,0,0,.85), 0 0 0 1px rgba(255,255,255,.09)',
sheet: '0 -20px 40px -24px rgba(0,0,0,.9)',
},
},
},
plugins: [],
};