-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
44 lines (43 loc) · 1.12 KB
/
tailwind.config.cjs
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
const colors = require("tailwindcss/colors");
const breakpoints = require("./src/tailwind.breakpoints.config.json");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js,svelte,ts}"],
darkMode: "class",
theme: {
screens: breakpoints,
extend: {
colors: {
accent: {
50: "#ffd86a",
100: "#ffcf55",
150: "#ffc541",
200: "#ffb92c",
300: "#ffa105",
400: "#ff9300",
500: "#ff8800",
600: "#ea7c00",
700: "#cd6d00",
800: "#a85900",
900: "#7b4200",
},
},
backgroundImage: {
radialShadow: "radial-gradient(closest-side, #0009, #0000)",
},
transitionProperty: {
DEFAULT:
"color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, text-shadow",
outline: "outline",
dimensions: "width, height",
},
minWidth: {
"1/2": "50%",
},
maxWidth: {
screen: "100vw",
},
},
},
plugins: [],
};