-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
52 lines (51 loc) · 1.24 KB
/
tailwind.config.js
File metadata and controls
52 lines (51 loc) · 1.24 KB
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
49
50
51
52
/** @type {import("tailwindcss").Config} */
const defaultTheme = require("tailwindcss/defaultTheme");
export default {
content: [
"./index.html",
"./components/**/*.{js,ts,jsx,tsx,vue}",
"./pages/**/*.{js,ts,jsx,tsx,vue}"
],
theme: {
extend: {
fontFamily: {
sans: ["Inter", ...defaultTheme.fontFamily.sans] // Adds a new `font-display` class
},
colors: {
body: {
text: "#000000",
"text-disabled": "#868686",
bg: "#F3F3F3"
},
separator: "#E2E2E2",
card: {
bg: "#FFFFFF",
border: "#E5E5E5",
create: "#A0A0A0",
"bg-overlay-locked": "#EEEEEE",
"text-overlay-locked": "#6A6A6A",
"text-red": "#DB2727",
"text-blue": "#2070B9",
"text-black": "#252323",
"text-yellow": "#3F8415"
},
button: {
bg: "#FFFFFF",
"bg-disabled": "#FAFAFA",
"text-disabled": "#868686",
"text-success": "#3F8415",
"text-danger": "#AA0505"
}
},
aspectRatio: {
auto: "auto",
square: "1 / 1",
video: "16 / 9"
},
container: {
center: "true"
}
}
},
plugins: []
};