-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.js
66 lines (65 loc) · 1.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
// tailwind.config.js
import { nextui } from "@nextui-org/react";
import { amber, colors, orange } from "tailwindcss/colors";
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
stroke: "#232325",
"tizz-background": "#111114",
"tizz-background-green": "#041409",
"prediction-yellow": "#ffa800",
neutral: {
950: "#0E0E12",
900: "#14141A",
800: "#1E1E27",
700: "#444444",
600: "#4E7B52",
500: "#5C9454",
400: "#B0C5AD",
},
red: {
400: "#FF6767",
500: "#EA3A3D",
600: "#E20F00",
},
amber: {
300: "#FFD166",
},
yellow: {
400: "#FFCC00 ",
},
emerald: {
400: "#47D0A5",
},
green: {
950: "#072B11",
900: "#0E4A1B",
850: "#26513A",
800: "#3C614B",
},
stone: {
50: "#FFFDF7 ",
},
orange: {
500: "#FF7A00",
},
"slate-300": "#BCDCDB",
"gray-800": "#282834",
},
},
},
darkMode: "class",
plugins: [
nextui({
addCommonColors: true,
}),
],
};