-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
105 lines (105 loc) · 2.45 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
98
99
100
101
102
103
104
105
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
"2xl": "1536px",
},
container: {
center: true,
},
extend: {
borderWidth: {
1: "1px",
},
zIndex: {
cursor: "99999",
},
fontFamily: {
firacode: ["var(--font-firacode)"],
montserrat: ["var(--font-montserrat)"],
},
backdropBlur: {
1: "1px",
},
colors: {
light_bg: {
100: "#f1f1f1",
200: "#e3e3e3",
300: "#d5d5d5",
400: "#c7c7c7",
500: "#b9b9b9",
600: "#949494",
700: "#6f6f6f",
800: "#4a4a4a",
900: "#252525",
},
border: "#343841",
background: "#23262d",
dark_bg: {
100: "#d1d1d1",
200: "#a2a2a2",
300: "#747474",
400: "#454545",
500: "#171717",
600: "#121212",
700: "#0e0e0e",
800: "#090909",
900: "#050505",
},
brand_bg: {
100: "#e9d9fc",
200: "#d2b4f8",
300: "#bc8ef5",
400: "#a569f1",
500: "#8f43ee",
600: "#7236be",
700: "#56288f",
800: "#391b5f",
900: "#1d0d30",
},
extraverted: "#5F96B3",
intuitive: "#D9B044",
thinking: "#5CA176",
prospecting: "#816499",
turbulent: "#DC6A63",
percentage: "#51596A",
chart_bg: {
100: "#d0d0d0",
200: "#a2a2a2",
300: "#737373",
400: "#454545",
500: "#161616",
600: "#121212",
700: "#0d0d0d",
800: "#090909",
900: "#040404",
},
react: "#00d8ff",
javascript: "#fcdc00",
next: "#000000",
typescript: "#3178c6",
tailwindcss: "#07b6d4",
sass: "#be608b",
chakraui: "#29bfb3",
"framer-motion": "#ed01bc",
"neovim-left": "#58943b",
"neovim-right": "#1292dc",
git: "#f05033",
},
},
},
plugins: [require("flowbite/plugin")],
autoprefixer: {},
...(process.env.NODE_ENV === "production" ? { cssnano: {} } : {}),
};