-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathtailwind.config.cjs
40 lines (39 loc) · 1000 Bytes
/
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
const colors = require("tailwindcss/colors");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{svelte,js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
primary: colors.purple,
fmd: {
white: {DEFAULT: "#ffffff", background: "#FFFFFF05"},
black: "#000000",
navy: "#1E2852",
blue: "#364c99",
red: {
DEFAULT: "#F04D21",
600: "#DB3B0F",
300: "#F3714D",
background: "#db3b0f05",
},
gray: {DEFAULT: "#E5E5E5", 600: "#888888"},
},
},
keyframes: {
loading: {
"0%, 100%": { fill: "#88888880" },
"50%": { fill: "#888888" },
},
loadingDark: {
"0%, 100%": { fill: "#FFFFFF80" },
"50%": { fill: "#FFFFFF" },
},
},
},
container: {
center: true,
},
},
plugins: [require("@tailwindcss/forms")],
};