-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
43 lines (43 loc) · 1001 Bytes
/
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
module.exports = {
darkMode: "class",
content: [
"./pages/**/*.tsx",
"./components/**/*.tsx",
"./sections/**/*.tsx",
"./utils/**/*.tsx",
],
safelist: ["text-primary", "text-primary_dark"],
theme: {
extend: {
boxShadow: {
"fade-y":
"0 10px 20px rgba(0, 0, 0, 0.3), 0 -10px 20px rgba(0, 0, 0, 0.3);",
},
},
dropShadow: {
"skill-circle": [
"0 10px 8px rgb(0 0 0 / 0.03)",
"0 4px 3px rgb(0 0 0 / 0.05)",
],
},
colors: {
inherit: "inherit",
transparent: "transparent",
current: "currentColor",
primary: "#006AFF",
primary_dark: "#218CFF",
light: "#fcfcfc",
white: "#ffffff",
danger: "#FF4000",
danger_dark: "#FF481F",
dark: "#262626",
darker: "#1C1C1C",
warning: "FFEA00",
warning_dark: "#FFDD1F",
},
fontFamily: {
sans: ["Poppins", "sans-serif "],
},
plugins: [require("@tailwindcss/forms")],
},
};