-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
48 lines (48 loc) · 1.07 KB
/
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
45
46
47
48
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./layout/*.{js,ts,jsx,tsx}",
"./sections/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
fontFamily: {
primary: "Primary",
primary100: "TemposLight",
primary200: "Primary",
primary300: "TemposMedium",
primary400: "TemposSemibold",
primary500: "TemposBold",
},
colors: {
dark: {
100: "#1B1B1B",
200: "#101010",
300: "#101828",
400: "#1F2F49",
500: "#181513",
600: "rgb(17,16,17)",
700: "#1A1A1A",
},
light: {
50: "#F9FAFB",
100: "#D0D5DD",
200: "#667085",
300: "#F3F3F5",
400: "#FFFEFD",
},
},
screens: {
sm: "428px",
"2xl": "1440px",
"3xl": "1540px",
"4xl": "1720px",
"5xl": "1920px",
},
},
},
plugins: [],
};