-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
82 lines (81 loc) · 1.57 KB
/
Copy pathtailwind.config.cjs
File metadata and controls
82 lines (81 loc) · 1.57 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
const colors = require('tailwindcss/colors');
module.exports = {
darkMode: 'selector',
content: ['./public/index.html', './src/app.html', './src/**/*.svelte', './src/**/**/*.svelte'],
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
black: '#000000',
white: '#ffffff',
energy: '#BD3737',
building: '#4880A8',
buildings: '#4880A8',
industry: '#373949',
agriculture: '#65987D',
mobility: '#F5AF4A',
transport: '#F5AF4A',
waste: '#B7693D',
fgases: '#7CAFBA',
economy: '#64AE9C',
green: {
100: '#F7FCF5',
200: '#E5F5E0',
300: '#C7E9C0',
400: '#A1D99B',
500: '#74C476',
600: '#41AB5D',
700: '#238B45',
800: '#006D2C',
900: '#00441B',
1000: '#000A04'
},
blue: {
100: '#F7FBFF',
200: '#DEEBF7',
300: '#C6DBEF',
400: '#9ECAE1',
500: '#6BAED6',
600: '#4292C6',
700: '#2171B5',
800: '#08519C',
900: '#08306B',
1000: '#020B18'
},
red: {
100: '#FFF5F0',
200: '#FEE0D2',
300: '#FCBBA1',
400: '#FC9272',
500: '#FB6A4A',
600: '#EF3B2C',
700: '#CB181D',
800: '#A50F15',
900: '#67000D',
1000: '#1A0003'
},
gray: colors.zinc,
yellow: colors.yellow,
orange: colors.orange,
amber: colors.amber,
budgetLight: '#FADEA5',
budgetDefault: '#F56860',
budgetDark: '#9E0669',
budgetHistoric: '#268EA5'
},
container: {
center: true,
padding: {
DEFAULT: '1rem',
lg: '2rem'
},
screens: {
sm: '100%',
md: '100%',
lg: '100%',
xl: '1280px'
}
},
extend: {}
}
};