-
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) · 938 Bytes
/
tailwind.config.js
File metadata and controls
37 lines (37 loc) · 938 Bytes
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} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,svelte,ts,tsx,vue}"],
theme: {
extend: {
colors: {
// transparent: "transparent",
// current: "currentColor",
"light-red": "#e06c75",
"dark-red": "#be5046",
green: "#98c379",
"light-yellow": "#e5c07b",
"dark-yellow": "#d19a66",
blue: "#61afef",
magenta: "#c678dd",
cyan: "#56b6c2",
"gutter-grey": "#4b5263",
"comment-grey": "#5c6370",
},
animation: {
rotate: "rotate 20s infinite",
},
keyframes: {
rotate: {
from: { rotate: "0deg" },
"50%": { scale: "1 1.5" },
to: { rotate: "360deg" },
},
},
},
fontFamily: {
sans: ["DM Sans Variable", "sans-serif"],
serif: ["DM Serif Display", "serif"],
},
},
plugins: [],
}