-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (37 loc) · 993 Bytes
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
screens: {
xs: "450px",
// => @media (min-width: 450px) { ... }
sm: "575px",
// => @media (min-width: 576px) { ... }
md: "768px",
// => @media (min-width: 768px) { ... }
lg: "992px",
// => @media (min-width: 992px) { ... }
xl: "1200px",
// => @media (min-width: 1200px) { ... }
"2xl": "1400px",
// => @media (min-width: 1400px) { ... }
},
colors: {
bkg: {
1: "hsl(var(--color-bkg1) / <alpha-value>)",
2: "hsl(var(--color-bkg2) / <alpha-value>)",
},
text: "hsl(var(--color-text) / <alpha-value>)",
accent: "hsl(var(--accent) / <alpha-value>)",
},
fontFamily:{
noto: ['Noto Serif', 'serif'],
roboto: ['Roboto', 'sans-serif']
},
},
},
}