-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (44 loc) · 1.27 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
colors: {
default: "rgba(0, 0, 0, 1)",
primary: "rgba(26, 26, 26, 1)",
secondary: "rgb(38, 38, 38)",
white: "rgba(255, 255, 255, 1)",
"light-white": "rgb(247, 247, 245)",
"light-white-second": "rgb(227, 227, 227)",
border: "rgba(17, 17, 17, 0.25)",
grey: "rgba(60, 60, 67, 0.36)",
"light-grey": "rgba(67, 67, 69)",
"light-grey-second": "rgb(168, 168, 174)",
"light-grey-third": "rgb(108, 108, 108)",
"dark-grey": "rgb(67, 67, 69)",
blue: "rgb(0, 122, 255)",
seperator: "rgba(60, 60, 67, 0.36)",
"dark-seperator": "rgba(84, 84, 88, 0.65)",
},
fontFamily: {
sans: ["SF Pro Text", "sans-serif"],
sansMedium: ["SF Pro Text Medium", "sans-serif"],
display: ["SF Pro Display", "sans-serif"],
displayMedium: ["SF Pro Display Medium", "sans-serif"],
mono: ["SF Mono", "monospace"],
},
extend: {
animation: {
"spin-slow": "spin 2s linear infinite",
},
},
screens: {
sm: "320px",
md: "768px",
lg: "1024px",
xl: "1280px",
"2xl": "1536px",
},
variants: {},
},
plugins: [],
};