forked from shopstr-eng/shopstr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
40 lines (38 loc) · 1.11 KB
/
tailwind.config.ts
File metadata and controls
40 lines (38 loc) · 1.11 KB
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
import type { Config } from "tailwindcss";
import { heroui } from "@heroui/react";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./utils/**/*.{js,ts,jsx,tsx}",
"./app/**/*.{js,ts,jsx,tsx}",
"./lib/**/*.{js,ts,jsx,tsx}",
"./node_modules/@heroui/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: {
"dark-bg": "#212121",
"dark-fg": "#4d4c4e",
"light-bg": "#e8e8e8",
"light-fg": "#f5f5f5",
"shopstr-purple": "#a438ba",
"shopstr-purple-light": "#a655f7",
"shopstr-yellow": "#fcd34d",
"shopstr-yellow-light": "#fef08a",
"dark-text": "#e8e8e8",
"accent-dark-text": "#fef08a",
"light-text": "#212121",
"accent-light-text": "#a438ba",
},
},
},
darkMode: "class",
plugins: [heroui()],
};
export default config;