-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
74 lines (74 loc) · 1.61 KB
/
Copy pathtailwind.config.js
File metadata and controls
74 lines (74 loc) · 1.61 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
65
66
67
68
69
70
71
72
73
74
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/mainview/**/*.{html,js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
brand: {
purple: "#7a5af8",
"purple-dark": "#5925dc",
blue: "#447aff",
"blue-light": "#9bb4ff",
pink: "#ee46bc",
navy: "#172b4d",
},
surface: {
DEFAULT: "#ffffff",
mist: "#f8f7ff",
violet: "#f0eeff",
info: "#d7defa",
},
gray: {
300: "#d0d5dd",
400: "#98a2b3",
500: "#6b778c",
700: "#475467",
},
accent: {
teal: "#54c9c2",
"teal-dark": "#38b2ab",
},
success: "#22a861",
warning: "#ffc400",
danger: "#d0021b",
},
fontFamily: {
display: [
"Waldenburg",
"Waldenburg Fallback",
"system-ui",
"sans-serif",
],
"display-bold": [
"WaldenburgFH",
"WaldenburgFH Fallback",
"system-ui",
"sans-serif",
],
sans: ["Inter", "Inter Fallback", "system-ui", "sans-serif"],
mono: [
"Geist Mono",
"ui-monospace",
"SFMono-Regular",
"Menlo",
"Monaco",
"Consolas",
"monospace",
],
},
borderRadius: {
sm: "4px",
DEFAULT: "8px",
md: "8px",
lg: "16px",
xl: "24px",
soft: "30px",
pill: "9999px",
},
boxShadow: {
none: "none",
},
},
},
plugins: [],
};