-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
68 lines (67 loc) · 1.63 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
58
59
60
61
62
63
64
65
66
67
68
const defaultTheme = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js,svelte,ts,md}"],
// blog tailwind classes \/ \/
safelist: ["max-w-2xl"],
theme: {
extend: {
colors: {
primary: {
50: "#fbf0f5",
100: "#f3d4e2",
200: "#ebb8d0",
300: "#e39cbd",
400: "#db80aa",
500: "#d772a1",
DEFAULT: "#d772a1",
600: "#c16690",
700: "#964f70",
800: "#6b3950",
900: "#562d40"
},
zinc: {
950: "#100E12",
850: "#1e1e21",
750: "#333338",
650: "#494951"
}
},
fontFamily: {
sans: ["InterVariable", "Roboto", ...defaultTheme.fontFamily.sans],
serif: ["Georgia", ...defaultTheme.fontFamily.serif],
roboto: ["Roboto", ...defaultTheme.fontFamily.sans],
mono: ["Courier", "Vazirmatn", ...defaultTheme.fontFamily.mono]
},
aspectRatio: {
auto: "auto",
square: "1 / 1",
video: "16 / 9",
22: "22",
17: "17",
8.5: "8.5"
},
backgroundSize: {
'size-200': '200% 100%',
},
backgroundPosition: {
'pos-0': '0% 0%',
'pos-x-100': '100% 0%',
},
maxWidth: {
'2xs': '16rem',
'3xs': '12rem',
},
rotate: {
'15': '15deg'
},
scale: {
'101': '1.01',
},
}
},
corePlugins: {
aspectRatio: false
},
plugins: [require("@tailwindcss/aspect-ratio"), require("@tailwindcss/typography")]
};