-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.ts
58 lines (55 loc) · 1.23 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
import type { Config } from "tailwindcss";
import { nextui } from "@nextui-org/react";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./services/**/*.{js,ts}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}"
],
theme: {
extend: {
size:{
"4.5": "1.125rem",
},
colors: {
"gold-primary": "#e8c24a",
},
fontSize: {
ss: ['0.8125rem', '1.125rem'],
},
fontFamily: {
display: "Oswald, ui-serif", // Adds a new `font-display` class
},
backgroundColor: {
default: "var(--bg,#140E06)",
},
textColor: {
default: "white",
sub: "rgba(255,255,255,0.50)",
},
outlineColor: {
base: "var(--button-stroke,rgba(247,147,26,0.20))",
},
},
},
darkMode: "class",
plugins: [
nextui({
// defaultTheme: "dark",
themes: {
dark: {
colors: {
primary: {
DEFAULT: "#FFCD4D",
50: "#523914",
400: "#FFCD4D"
},
},
},
},
}),
],
};
export default config;