-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
57 lines (56 loc) · 1.31 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,svelte,ts,tsx,vue}"],
theme: {
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
},
container: {
center: true,
},
extend: {
fontFamily: {
sans: ["Inter", ...defaultTheme.fontFamily.sans],
display: ["Rubik", ...defaultTheme.fontFamily.sans],
},
colors: {
pine: {
50: "#F2FAF9",
100: "#E7F9E4",
200: "#bfe4e1",
300: "#99d4cf",
400: "#4db4aa",
500: "#009486",
600: "#008579",
700: "#006D60",
800: "#00564A",
900: "#003D0B",
},
rose: {
50: "#fcf9f8",
100: "#fdeef2",
200: "#fbcfe4",
300: "#faa7cd",
400: "#fb6ea5",
500: "#fc437c",
600: "#f24664",
700: "#dd1f47",
800: "#b21a39",
900: "#8e162e",
},
},
keyframes: {
infinite: {
"0%": { "background-position": "0 0" },
"100%": { "background-position": "0 -100%" },
},
},
animation: {
infinite: "infinite 40s linear infinite",
},
},
},
plugins: [require("@tailwindcss/typography")],
};