-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.ts
53 lines (46 loc) · 1.18 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
import type { Config } from "tailwindcss";
import defaultTheme from "tailwindcss/defaultTheme";
export default <Partial<Config>>{
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./nuxt.config.{js,ts}",
],
theme: {
extend: {
colors: {
/* boxShadow: {
'3xl': '0 35px 60px -15px rgba(0, 0, 0, 0.3)',
} */
// Text
"text-100": "#0f172a",
"text-200": "#a8a5a5",
// Background
"base-100": "#0f172a", // background
"base-200": "#14203a",
"--text-input-bg": "#212121",
// Border
"border-100": "#444",
"border-200": "#555",
// Shadow
"shadow-100": "#2020208e",
"shadow-200": "#111111bf",
// Other
/* primary: "#08D9D6",
secondary: "#222831",
accent: "#ff2e63",
neutral: "#EAEAEA",
info: "#3abff8",
success: "#36d399",
warning: "#fbbd23",
error: "#f87272", */
},
},
fontFamily: {
Cabin: ["Cabin", "sans-serif"],
},
},
plugins: [require("@tailwindcss/typography")],
};