This repository was archived by the owner on Feb 16, 2024. It is now read-only.
generated from vannizhang/react-redux-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
53 lines (52 loc) · 1.41 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
const colors = require('tailwindcss/colors')
module.exports = {
content: [
'./src/**/*.html',
'./src/**/*.{js,jsx,ts,tsx}'
],
darkMode: 'media', // or 'media' or 'class'
theme: {
colors: {
...colors,
custom: {
'light-blue': {
DEFAULT: '#BFEEFF',
90: 'rgba(191,238,255, .9)',
80: 'rgba(191,238,255, .8)',
50: 'rgba(191,238,255, .5)',
0: 'rgba(191,238,255, .0)'
},
'background': {
DEFAULT: 'rgb(0,35,47)',
95: 'rgba(0,35,47, .95)',
90: 'rgba(0,35,47, .9)',
85: 'rgba(0,35,47, .85)',
70: 'rgba(0,35,47, .7)',
}
}
},
extend: {
// height: {
// 'control-panel': '210px'
// },
spacing: {
'bottom-panel-height': '236px',
'app-header-size': '40px',
'app-header-position': '15px',
'layer-toggle-top-position': '15px',
'layer-toggle-top-position-mobile': '55px',
'search-widget-top-position': '50px',
'search-widget-top-position-mobile': '90px',
'cloud-slider-height': '80px',
'space-between-main-secondary-selectors': 'var(--space-between-main-secondary-selectors)',
'analysis-tool-container-width': '255px',
'search-widget-width': '270px',
'map-action-button-size': '32px'
}
},
},
variants: {
extend: {},
},
plugins: [],
}