-
Notifications
You must be signed in to change notification settings - Fork 10
/
tailwind.config.js
97 lines (95 loc) · 2.26 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
97
/* global require */
const sans = [
"Roboto",
"ui-sans-serif",
"system-ui",
"-apple-system",
"BlinkMacSystemFont",
"Segoe UI",
"Helvetica Neue",
"Arial",
"Noto Sans",
"sans-serif",
"Apple Color Emoji",
"Segoe UI Emoji",
"Segoe UI Symbol",
"Noto Color Emoji",
];
/** @type {import('tailwindcss').Config} */
export default {
mode: "jit", // update this line
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
primary: "rgba(var(--color-primary), <alpha-value>)",
secondary: "rgba(var(--color-secondary), <alpha-value>)",
alternative: "rgba(var(--color-alternative), <alpha-value>)",
blue: "#0F3941",
grey: "#455659",
red: "#D3482C",
lightgrey: "#A3AAB9",
light: "#CED7E8",
whiteMod: "#F5F7FC",
semiGray: "#ADB7CA",
semiDarkGray: "#5E5E5E",
midGray: "#A2A2A2",
lightblue: "#2CB7D3",
lightblue2: "#2cb7d31a",
midGray2: "#7B818D",
light2: "#BCC5D6",
light3: "#E7ECF5",
darkgrey: "#6B7280",
green: "#1BCC6C",
teal: {
50: "#effefc",
100: "#cafdf8",
200: "#95faf1",
300: "#58f0e9",
400: "#26dbd8",
500: "#0ec6c6",
600: "#089699",
700: "#0b777a",
800: "#0e5d61",
900: "#114d50",
950: "#022d31",
},
"wild-sand": {
50: "#f4f4f4",
100: "#efefef",
200: "#dcdcdc",
300: "#bdbdbd",
400: "#989898",
500: "#7c7c7c",
600: "#656565",
700: "#525252",
800: "#464646",
900: "#3d3d3d",
950: "#292929",
},
disabled: "rgba(var(--color-disabled), <alpha-value>)",
},
boxShadow: {
card: "0 22px 34px rgba(116,116,116,0.25)",
},
borderRadius: {
10: "10px",
20: "20px",
},
fontFamily: {
sans,
serif: [
"Roboto Slab",
"ui-serif",
"Georgia",
"Cambria",
"Times New Roman",
"Times",
"serif",
],
altSans: ["Mulish", ...sans],
},
},
},
plugins: [require("@tailwindcss/forms")],
};