-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
74 lines (71 loc) · 2.11 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
module.exports = {
future: {
purgeLayersByDefault: true,
},
future: {
removeDeprecatedGapUtilities: true,
},
theme: {
extend: {
colors: {
Myello: '#ffc513',
sky: '#74C1E7',
skylight: '#FAFDFF',
light: 'hsl(0, 0%, 96%)',
dark: 'hsl(0, 0%, 21%)',
greenlight: 'hsl(171, 100%, 41%)',
blue: 'hsl(217, 71%, 53%)',
bluesky: 'hsl(204, 86%, 53%)',
grass: 'hsl(141, 53%, 53%)',
yellow: 'hsl(48, 100%, 67%)',
pinkdanger: 'hsl(348, 100%, 61%)',
invertblack: 'hsl(0, 0%, 4%)',
invertwhite: 'hsl(0, 0%, 100%)',
invertgreydarker: 'hsl(0, 0%, 21%)',
invertwhiter: 'hsl(0, 0%, 96%)',
darkbis: 'hsl(0, 0%, 7%)',
blackter: 'hsl(0, 0%, 14%)',
greydarker: 'hsl(0, 0%, 21%)',
greydark: 'hsl(0, 0%, 29%)',
greylight: 'hsl(0, 0%, 71%)',
greylighter: 'hsl(0, 0%, 86%)',
grey2: 'rgba(255, 255, 255, 0) 50%',
grey1: 'rgba(231, 235, 237, 100) 50%',
redbutton: '#0079D3',
redback: '#DAE0E6',
},
backgroundImage: theme => ({
'partypng': "url('../image/service-tab.png')",
'layer1png': "url('../image/Layer1.png')",
'layer2png': "url('../image/Layer2.png')",
'worldpng': "url('../image/world.png')",
'mappng': "url('../image/map.png')",
'maskpng': "url('../image/maskgroup.png')",
}),
linearGradientColors: theme => theme('colors'),
},
aspectRatio: {
none: 0,
square: [1, 1],
"16/9": [16, 9],
"4/3": [4, 3],
"21/9": [21, 9]
},
},
variants: {
aspectRatio: ['responsive']
},
plugins: [
require('tailwindcss'),
require('autoprefixer'),
require("@tailwindcss/ui"),
require('@tailwindcss/custom-forms'),
require('@tailwindcss/typography'),
require('tailwindcss-elevation')(['responsive','focus','hover','active','group-hover','focus-within']),
require('tailwindcss-writing-mode')({
variants: ['responsive', 'hover']
}),
require("tailwindcss-responsive-embed"),
require("tailwindcss-aspect-ratio"),
],
};