-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathtailwind.config.js
70 lines (70 loc) · 1.9 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
/** @type {import('tailwindcss').Config} */
/*eslint-env node*/
module.exports = {
content: [
'!./node_modules',
'!./libs/react-native-app/node_modules',
'./libs/**/*.{html,js,rs}'
],
/*
safelist: [
{
pattern: /./
}
],
*/
theme: {
extend: {
colors: {
'dark-blue': '#0C1120',
'magenta': '#DA00DB',
'magenta-1': '#FE49FF',
'magenta-2': '#E426E6',
'magenta-3': '#A700A8',
'magenta-4': '#670068',
'cyan': '#01FEFC',
'orange': '#FF7E07',
'off-white': '#EDEDED',
// 'blue': '#25e4d3',
// 'darkBlue': '#0C1120',
// 'light': '#EDEDED',
// 'darkOrange': '#f97432',
// 'dark': '#0C1120',
'light-blue': '#25e4d3',
darkBlue: '#2f8985',
// orange: '#fab457',
darkOrange: '#f97432',
light: '#55555588',
lightDark: '#88888811',
dark: '#202525'
},
boxShadow: {
'dark': '-5px 5px 10px 5px #111111 !important',
'blue': '0 0 3px #25e4d3 !important',
'light': '0 0 3px #ffffff8 !important',
'darkOrange': '0 0 3px #f97432 !important'
// 'dark': '-5px 5px 10px 5px #0C1120',
// 'blue': '0 0 3px #25e4d3',
// 'light': '0 0 3px #EDEDED',
// 'darkOrange': '0 0 3px #FF7E07',
},
fontFamily: {
sans: ['Inter, sans-serif', { fontFeatureSettings: '"cv11"' }],
jetbrains: ['JetBrains Mono', 'monospace'],
'bebas-neue': ['"Bebas Neue"', 'sans-serif'],
'open-sans': ['"Open Sans"', 'sans-serif']
},
fontWeight: {
regular: 400,
semibold: 600 // Define semibold weight
},
backgroundImage: theme => ({
'bandwidth-card': 'url(\'https://r2-images.blockmesh.xyz/4c23603d-d4af-40bb-19b2-91db0b51ff00.png\')'
}),
rotate: {
'180': '180deg'
}
}
},
plugins: []
}