-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
46 lines (45 loc) · 1.2 KB
/
tailwind.config.cjs
File metadata and controls
46 lines (45 loc) · 1.2 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
43
44
45
46
/** @type {import('tailwindcss').Config} */
const colors = require("tailwindcss/colors");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}",
"./node_modules/flowbite/**/*.js",
],
theme: {
colors: {
primary: "#17202A",
secondary: "#ecc94b",
transparent: "transparent",
current: "currentColor",
slate: colors.slate,
stone: colors.stone,
blue: colors.blue,
green: colors.green,
black: colors.black,
white: colors.white,
gray: colors.gray,
emerald: colors.emerald,
indigo: colors.indigo,
yellow: colors.yellow,
},
extend: {
translate: ["dark"],
animation: {
'skew-scroll': 'skew-scroll 20s linear infinite',
},
},
keyframes: {
'skew-scroll': {
'0%': {
transform: 'rotatex(20deg) rotateZ(-20deg) skewX(20deg) translateZ(0) translateY(0)',
},
'100%': {
transform:
'rotatex(20deg) rotateZ(-20deg) skewX(20deg) translateZ(0) translateY(-100%)',
},
},
},
},
plugins: [require("flowbite/plugin")],
};