-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
40 lines (40 loc) · 952 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"./node_modules/react-tailwindcss-datepicker/dist/index.esm.js",
],
theme: {
extend: {
colors: {
primary: "#0F76BC",
secondary: "#20D353",
tertiary: "#F7931E",
"input-border": "#2D3748",
transparent: "transparent",
"button-primary": "#7582eb",
"primary-text": "#EDF2F7",
"secondary-text": "#A0AEC0",
theme: {
light: "#1A1A1A",
secondary: "#8E8D8A",
dark: {
100: "#0D0D0D",
200: "#181818",
300: "#222222",
},
primary: {
100: "#6F91AA",
200: "#42637C",
300: "#2A4251",
},
},
disable: "#55524D",
danger: "#CC3333",
yellow: "#FFD700",
},
},
},
plugins: [],
};