-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
46 lines (46 loc) · 1.11 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
screens: {
"mobile-medium": "375px",
},
colors: {
black: "#191919",
yellow: "#f6d700",
orange: "#fc5e02",
pink: "#ff74df",
white: "#f8f7f1",
},
fontFamily: {
sans: ["proxima-nova-condensed", "Arial", "sans-serif"],
display: ["Gregor", "Impact", "sans-serif"],
serif: ["Bagatela", "Times New Roman", "serif"],
},
fontSize: {
xs: "0.85rem",
xxs: "0.7rem",
"full-mobile": "6.3rem",
"full-desktop": "12rem",
},
dropShadow: {
pink: "0px 0px 8px #FF74E0",
orange: "0px 0px 5px #fc5e02",
"white-sm": "0px 0px 1px #f8f7f1",
"white-md": "0px 0px 3px rgba(246, 245, 239, 0.8)",
},
borderWidth: {
1: "1px",
},
opacity: {
85: ".85",
},
lineHeight: {
"very-tight": "0.8",
"extra-tight": "0.75",
},
},
},
plugins: [],
};