-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
53 lines (53 loc) · 1.25 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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
screens: {
sm: "376px",
smd: "425px",
md: "768px",
mdl: "1000px",
lg: "1460px",
xl: "1580px",
"2xl": "1636px",
},
extend: {
fontFamily: {
sans: ["InterVariable", "Inter", ...defaultTheme.fontFamily.sans],
},
letterSpacing: {
0.65: "0.65px",
0.7: "0.7px",
0.8: "0.8px",
1: "1px",
1.2: "1.2px",
1.8: "1.8px",
2.4: "2.4px",
2.6: "2.6px",
3: "3px",
3.2: "3.2px",
},
height: {
65: "65px",
},
colors: {
normal: "#1F2024",
pink: "#8967E7",
gray: "#F9F9F9",
black: "#000000",
background: "rgba(252,239,235,0.8)",
primary: "#F21F7F",
},
fontSize: {
64: "64px",
},
backgroundImage: {
// bgMobile: "url('/images/bg-body-mobile.jpg')",
// bgMobile:
// "url('/images/mobile-bg-hero.jpg'), url('/images/bg-footer.jpg')",
},
},
},
plugins: [require("@tailwindcss/typography")],
};