-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
42 lines (41 loc) · 1.44 KB
/
tailwind.config.ts
File metadata and controls
42 lines (41 loc) · 1.44 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
41
42
import type { Config } from "tailwindcss";
export default <Partial<Config>>{
theme: {
extend: {
fontFamily: {
pretendard: ["Pretendard", "sans-serif"],
},
colors: {
primary: "rgb(var(--primary) / <alpha-value>)",
secondary: "rgb(var(--secondary) / <alpha-value>)",
"accent-1": "rgb(var(--accent-1) / <alpha-value>)",
"accent-2": "rgb(var(--accent-2) / <alpha-value>)",
destructive: "rgb(var(--destructive) / <alpha-value>)",
"gray-fe": "rgb(var(--gray-fe) / <alpha-value>)",
background: "rgb(var(--background) / <alpha-value>)",
"gray-f5": "rgb(var(--gray-f5) / <alpha-value>)",
"gray-d9": "rgb(var(--gray-d9) / <alpha-value>)",
"gray-b4": "rgb(var(--gray-b4) / <alpha-value>)",
"gray-8f": "rgb(var(--gray-8f) / <alpha-value>)",
"gray-66": "rgb(var(--gray-66) / <alpha-value>)",
"gray-1a": "rgb(var(--gray-1a) / <alpha-value>)",
foreground: "rgb(var(--foreground) / <alpha-value>)",
},
},
screens: {
desktop: "1440px",
},
},
content: [
"app/**/*.{vue,js,jsx,mjs,ts,tsx}",
"components/**/*.{vue,js,jsx,mjs,ts,tsx}",
"layouts/**/*.{vue,js,jsx,mjs,ts,tsx}",
"pages/**/*.{vue,js,jsx,mjs,ts,tsx}",
"plugins/**/*.{js,ts,mjs}",
"composables/**/*.{js,ts,mjs}",
"utils/**/*.{js,ts,mjs}",
"app.config.{js,ts,mjs}",
"app/spa-loading-template.html",
],
plugins: [],
};