-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
43 lines (43 loc) · 993 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
43 lines (43 loc) · 993 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
43
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: ["./app/**/*.{js,jsx}", "./components/**/*.{js,jsx}"],
theme: {
extend: {
colors: {
accent: {
DEFAULT: "#5aa9ff",
light: "#8bc3ff",
dark: "#3f7ad8",
},
signal: {
DEFAULT: "#ff9d5c",
light: "#ffc491",
dark: "#e67a3a",
},
ink: {
50: "#eef2f8",
100: "#dde4ef",
200: "#bec8d8",
300: "#9ca9be",
400: "#7f8ca6",
500: "#64718a",
600: "#4b566d",
700: "#323b50",
800: "#1a2233",
900: "#101723",
},
},
fontFamily: {
display: ["var(--font-display)"],
ui: ["var(--font-ui)"],
ko: ["var(--font-ui)"],
mono: ["var(--font-mono)"],
},
boxShadow: {
glow: "0 28px 90px rgba(0, 0, 0, 0.5)",
},
},
},
plugins: [],
};