-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
executable file
·67 lines (66 loc) · 1.83 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
const { nextui } = require("@nextui-org/react");
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
colors: {
"btn-accent": "#00B2FF",
"btn-primary": "#F59855",
"btn-black": "#222121",
"content-gray": "#808080",
"arrow-yellow": "#FE910A",
yellow1: "#FFDF36",
swapBox: "#494646",
textlightgray: "#9A9888",
textgray: "#A3A3A3",
green1: "#2FFF0D",
gold: "#FFC700",
darkGold: "#7E3603",
footer: "#161616",
navDefault: "#ABABAB",
navSelected: "#FC8415",
gray1: "#CFCFCF",
gray2: "#5A5B5A",
lightblue: "#00B2FF",
"text-error": "#FF0F00",
darkestGray: "#141414",
brightGray: "#7D7D7D",
green2: "#34D22C",
},
backgroundColor: {
primary: "#000000",
secondary: "#00B2FF",
header: "#496347",
black1: "#100F0F",
navItemBackground: "#212121",
navBackground: "#120F0F",
brightBlack: "#1E1E1E",
darkBlack: "#000004",
darkgray: "#47473F",
nightRider: "#2B2B2B",
neroBlack: "#1B1A1A",
},
fontFamily: {
minecraft: "Minecraft",
luckiestGuy: "LuckiestGuy",
barlow: "Barlow",
},
borderColor: {
lightGray: "#33332D",
},
},
},
plugins: [nextui()],
};
export default config;