-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
46 lines (46 loc) · 1.37 KB
/
Copy pathtailwind.config.js
File metadata and controls
46 lines (46 loc) · 1.37 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {
colors: {
"primary": "#0d7ff2",
"background-light": "#f5f7f8",
"background-dark": "#09090b",
"surface-dark": "#18181b",
"accent-amber": "#f59e0b",
"terminal-green": "#22c55e",
"zinc-950": "#09090b",
"zinc-900": "#18181b",
"zinc-800": "#27272a",
},
fontFamily: {
"display": ["Outfit", "Inter", "sans-serif"],
"tech": ["Space Grotesk", "sans-serif"],
"mono": ["JetBrains Mono", "monospace"],
"serif": ["Noto Serif SC", "serif"],
},
borderRadius: {
"DEFAULT": "0.25rem",
"lg": "0.5rem",
"xl": "0.75rem",
"2xl": "1rem",
"full": "9999px"
},
keyframes: {
shimmer: {
'0%': { left: '-100%' },
'100%': { left: '200%' },
}
}
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/container-queries'),
],
}