-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
38 lines (37 loc) · 1.05 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
const defaultTheme = require("tailwindcss/defaultTheme");
const colors = require("tailwindcss/colors");
/** @type {import('tailwindcss').Config} */
module.exports = {
plugins: [require("@tailwindcss/typography")],
content: [
"./src/**/*.{astro,css,json,ts,tsx}",
"./src/content/skills/**/*.md",
],
darkMode: "class",
theme: {
keyframes: {
blink: {
"50%": {
opacity: "0",
},
},
},
animation: {
blink: "blink 530ms step-start infinite alternate",
},
extend: {
colors: {
transparent: "transparent",
current: "currentColor",
primary: colors.cyan,
secondary: colors.amber,
tertiary: colors.emerald,
quaternary: colors.rose,
gray: colors.neutral,
},
fontFamily: {
sans: ['"Nunito"', ...defaultTheme.fontFamily.sans],
},
},
},
};