-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
96 lines (95 loc) · 2.14 KB
/
tailwind.config.js
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
const defaultTheme = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
screens: {
tablet: "640px",
laptop: "1024px",
desktop: "1366px",
},
extend: {
fontFamily: {
sans: ["Inter", ...defaultTheme.fontFamily.sans],
mono: ["DM Mono", "monospace"],
},
colors: {
black: "#202020",
primary: {
DEFAULT: "#ff6521",
hover: "#ff7935",
pressed: "#f35915",
disabled: "#d7d2d0",
"tint-300": "#ffd8c5",
"tint-200": "#ffede4",
"tint-100": "#fff6f1",
},
status: {
green: "#EAF5E4",
orange: "#F9F0E2",
red: "#FCE6E6",
},
gray: {
50: "#f9f9f9",
100: "#efefef",
200: "#e6e6e6",
300: "#dadada",
500: "#bebebe",
700: "#888888",
800: "#5c5c5c",
900: "#333333",
"deep-dark": "#202020",
card: "#f4f4f4",
},
success: {
DEFAULT: "#6fbe6d",
light: "#f1f9f1",
},
error: {
DEFAULT: "#ee5b5b",
hover: "#fc6969",
pressed: "#e45151",
light: "#fef2f2",
},
purple: {
DEFAULT: "#dadeff",
dark: "#c6caeb",
darkest: "#4e5273",
},
yellow: {
DEFAULT: "#eff9b0",
dark: "#dbe59c",
darkest: "#6d772e",
},
latte: {
DEFAULT: "#f0eee9",
dark: "#d2d0cb",
darkest: "#787671",
},
pink: {
DEFAULT: "#F9EDFF",
},
green: {
DEFAULT: "#D7F0D5",
},
orange: {
DEFAULT: "#E07D48",
},
},
borderRadius: {
DEFAULT: "10px",
},
spacing: {
4.5: "1.125rem",
7.5: "1.875rem",
},
boxShadow: {
DEFAULT: "0 8px 16px #efefef",
},
},
},
plugins: [require("@tailwindcss/typography"), require("@tailwindcss/forms")],
}