-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
100 lines (99 loc) · 2.92 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
const colors = require("tailwindcss/colors");
module.exports = {
mode: "jit",
purge: [
"./components/**/*.{vue,js}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./nuxt.config.{js,ts}",
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
fontFamily: {
mono: ["SF Mono", "Fira Code", "sans-serif"],
sans: ["Calibri", "San Francisco", "SF Pro Text"],
},
fontSize: {
bcXxs: "12px",
bcXs: "13px",
bcSm: "14px",
bcMd: "16px",
bcLg: "18px",
bcXl: "20px",
bcXxl: "22px",
bdHeading: "32px",
},
spacing: {
bcTabMR: "5px",
bcTabP: "10px",
bcTouchButton: "50px",
bcNavHeight: "100px",
bcNavScrollHeight: "70px",
},
colors: {
emerald: colors.emerald,
gray: colors.trueGray,
cwc: {
100: "#000000",
},
bgColor: "#0a192f",
bcColor: "#64ffda",
bcColorTitle: "#ccd6f6",
bcColorText: "#8892b0",
bcDarkNavy: "#020c1b",
bcLightNavy: "#112240",
bcLightestNavy: "#233554",
bcNavyShadow: "rgba(2, 12, 27, 0.7)",
bcDarkSlate: "#495670",
bcSlate: "#8892b0",
bcLightSlate: "#a8b2d1",
bcLightestSlate: "#ccd6f6",
bcWhite: "#e6f1ff;",
bcColorTint: "rgba(100, 255, 218, 0.1)",
},
borderRadius: {
bcBorderRadius: "4px",
},
height: {
bcNavHeight: "100px",
bcNavScrollHeight: "70px",
bcTabHeight: "42px",
bcHamburgerLineHeight: "2px",
},
width: {
bcTabWidth: "120px",
bcHamburgerWidth: "30px",
},
transitionTimingFunction: {
bcEasing: "cubic-bezier(0.645, 0.045, 0.355, 1)",
},
transitionDuration: {
250: "250ms",
},
outline: {
bcStyle: ["2px dashed #64ffda", "3px"],
},
inset: {
sideLg: "40px",
sideMd: "20px",
},
boxShadow: {
appbar: "0 10px 30px -10px rgba(2, 12, 27, 0.7)",
},
maxWidth: {
"900": "900px",
},
},
screens: {
sm: "480px",
md: "768px",
lg: "1080px",
},
},
variants: {
extend: {},
},
plugins: [require("@tailwindcss/aspect-ratio")],
};