-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
42 lines (42 loc) · 983 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
42 lines (42 loc) · 983 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
37
38
39
40
41
42
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
bg: {
deep: '#04060c',
surface: 'rgba(255,255,255,0.04)',
surfaceHover: 'rgba(255,255,255,0.08)',
},
accent: {
glacier: '#8eb8c9',
tide: '#5db5b9',
aurora: '#c8d9b4',
},
text: {
primary: '#e8eef5',
muted: '#8a99ab',
dim: '#5a6878',
},
border: {
DEFAULT: 'rgba(255,255,255,0.06)',
},
},
ringColor: {
focus: 'rgba(142,184,201,0.4)',
},
boxShadow: {
'frost': '0 8px 32px rgba(0,0,0,0.45)',
'frost-glow': '0 0 24px rgba(142,184,201,0.18)',
},
fontFamily: {
mono: ['ui-monospace', 'SFMono-Regular', 'Menlo', 'Monaco', 'Consolas', 'monospace'],
},
},
},
plugins: [],
}