-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (37 loc) · 1.15 KB
/
tailwind.config.js
File metadata and controls
37 lines (37 loc) · 1.15 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
/** @type {import('tailwindcss').Config} */
const flowbite = require("flowbite-react/tailwind");
export default {
theme: {
extend: {
colors: {
beige: "#ffeedd",
lightergreen: "#ddeecc",
eggblue: "#aaddcc",
seablue: "#99aabb",
sagegreen: "#88aa99",
lightgreen: "#aabb99",
lighterbrown: "#bb9988",
lightorange: "#eebbaa",
orange: "#ff8866",
pink: "#ccaabb",
mauve: "#886677",
lightbrown: "#887766",
brown: "#554433",
greengrass: "#667755",
quailegg: "#557777",
forestgreen: "#223311",
lightbergundy: "#442233",
bergundy: "#331111",
deepbergundy: "#330011",
},
transitionProperty: {
width: "width",
},
},
screens: {
xs: { max: "639px" },
},
},
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}", flowbite.content()],
plugins: [flowbite.plugin()],
};