-
-
Notifications
You must be signed in to change notification settings - Fork 89
/
tailwind.config.js
37 lines (35 loc) · 1.15 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
import colors from "tailwindcss/colors";
export default {
content: ["client/**/*.{html,js,vue}"],
darkMode: "selector",
theme: {
fontFamily: {
sans: ["Poppins", "sans-serif"],
},
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
},
extend: {
colors: {
// Dynamic
"theme-brand": "rgb(var(--theme-brand) / <alpha-value>)",
"theme-background": "rgb(var(--theme-background) / <alpha-value>)",
"theme-background-elevated":
"rgb(var(--theme-background-elevated) / <alpha-value>)",
"theme-text": "rgb(var(--theme-text) / <alpha-value>)",
"theme-text-muted": "rgb(var(--theme-text-muted) / <alpha-value>)",
"theme-text-very-muted":
"rgb(var(--theme-text-very-muted) / <alpha-value>)",
"theme-shadow": "rgb(var(--theme-shadow) / <alpha-value>)",
"theme-border": "rgb(var(--theme-border) / <alpha-value>)",
// Static
"theme-success": colors.emerald[600],
"theme-danger": colors.rose[600],
},
},
},
plugins: [],
};