-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
46 lines (46 loc) · 991 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
45
46
module.exports = {
content: ["./index.html", "./src/**/*.vue"],
theme: {
colors: {
gray: "#f7f8f9",
white: "#ffffff",
black: "#000000",
yellow: "#ffc700",
red: "#ff3f3f",
green: "#69da57",
"gray-100": "#D7D7D7",
"gray-140": "#868c9b",
"gray-160": "#656d7e",
"gray-180": "#3e4958",
"gray-200": "#1a2433",
"blue-160": "#eaf4ff",
"blue-180": "#3d86f5",
"blue-200": "#3d86f5",
"violet-180": "#f3eefd",
"violet-200": "#9975e2",
"orange-180": "#fff7f0",
"orange-200": "#e9ae7a",
},
fontFamily: {
montserrat: ["Montserrat", "sans-serif"],
roboto: ["Inter", "sans-serif"],
},
container: {
center: true,
padding: "1rem",
},
screens: {
md: { max: "700px" },
},
aspectRatio: {
square: "1/1",
video: "16/9",
"4/3": "4/3",
"4/5": "4/5",
},
},
variants: {
extend: {},
},
plugins: [],
};