-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
42 lines (42 loc) · 1.49 KB
/
tailwind.config.js
File metadata and controls
42 lines (42 loc) · 1.49 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
colors: {
red: {
300: "rgb(var(--tailwind-color-red-300) / <alpha-value>)",
400: "rgb(var(--tailwind-color-red-400) / <alpha-value>)",
500: "rgb(var(--tailwind-color-red-500) / <alpha-value>)", // prima)ry
600: "rgb(var(--tailwind-color-red-600) / <alpha-value>)",
700: "rgb(var(--tailwind-color-red-700) / <alpha-value>)",
},
light: {
300: "rgb(var(--tailwind-color-light-300) / <alpha-value>)",
400: "rgb(var(--tailwind-color-light-400) / <alpha-value>)",
500: "rgb(var(--tailwind-color-light-500) / <alpha-value>)", // prima)ry
600: "rgb(var(--tailwind-color-light-600) / <alpha-value>)",
700: "rgb(var(--tailwind-color-light-700) / <alpha-value>)",
},
dark: {
300: "rgb(var(--tailwind-color-dark-300) / <alpha-value>)",
400: "rgb(var(--tailwind-color-dark-400) / <alpha-value>)",
500: "rgb(var(--tailwind-color-dark-500) / <alpha-value>)", // prima)ry
600: "rgb(var(--tailwind-color-dark-600) / <alpha-value>)",
700: "rgb(var(--tailwind-color-dark-700) / <alpha-value>)",
},
black: "#000",
white: "#fff",
transparent: "transparent",
},
fontFamily: {
sans: "var(--font-family)",
},
fontWeight: {
light: 300,
normal: 400,
medium: 500,
bold: 700,
extrabold: 800,
},
},
};