forked from dave-b-b/react-achievements-zustand
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
35 lines (35 loc) · 874 Bytes
/
tailwind.config.js
File metadata and controls
35 lines (35 loc) · 874 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/**/*.{js,jsx,ts,tsx}',
'./stories/**/*.{js,jsx,ts,tsx}',
],
theme: {
extend: {
colors: {
border: "hsl(240 5.9% 90%)",
input: "hsl(240 5.9% 90%)",
ring: "hsl(240 5.4% 26%)",
background: "hsl(0 0% 100%)",
foreground: "hsl(240 10% 3.9%)",
primary: {
DEFAULT: "hsl(240 5.9% 10%)",
foreground: "hsl(0 0% 98%)",
},
secondary: {
DEFAULT: "hsl(240 4.8% 95.9%)",
foreground: "hsl(240 5.9% 10%)",
},
muted: {
DEFAULT: "hsl(240 4.8% 95.9%)",
foreground: "hsl(240 3.8% 46.1%)",
},
accent: {
DEFAULT: "hsl(240 4.8% 95.9%)",
foreground: "hsl(240 5.9% 10%)",
},
},
},
},
plugins: [],
}