-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
60 lines (59 loc) · 1.6 KB
/
tailwind.config.js
File metadata and controls
60 lines (59 loc) · 1.6 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
53
54
55
56
57
58
59
60
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
purge: [
// './pages/*.tsx',
// './components/**/*.tsx'
],
darkMode: 'media', // or 'media' or 'class'
theme: {
extend: {
transitionProperty: {
'width': 'width'
},
fontFamily: {
sans: ['Roboto', 'sans-serif'],
number: ["Rubik", "sans-serif"],
heading: ["Roboto", "sans-serif"],
},
transitionDuration: {
'4000': '4000ms',
'7000': '7000ms',
'8000': '8000ms',
},
colors: {
base: {
// DEFAULT: "#FAF9FA",
DEFAULT: "#F5F6FA",
dark: '#2b323d'
},
secondary: {
DEFAULT: "#FFFFFF",
dark: '#475263'
},
card: {
DEFAULT: "#def1ff",
},
highlight: {
DEFAULT: "#55D681",
secondary: "#278DD5"
},
navbar: {
DEFAULT: "#535467"
},
emote: {
0: "#3692e3",
1: "#F15B5B",
2: "#ff8105",
3: "#F1AC5B",
4: "#c3ba0c",
5: "#87bd10",
6: "#4D844B"
}
},
},
},
variants: {
extend: {},
},
plugins: [],
};