-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
152 lines (151 loc) · 4.64 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/** @type {import('tailwindcss').Config} */
module.exports = {
// important: true,
content: [
'./index.html',
'./src/components/**/*.vue',
'./src/template-bourbon/components/**/*.vue',
'./src/template-bourbon/pages/**/*.vue',
'./src/template-corp/components/**/*.vue',
'./src/template-corp/pages/**/*.vue',
'./src/template-groovy/components/**/*.vue',
'./src/template-groovy/pages/**/*.vue',
'./src/template-modern/components/**/*.vue',
'./src/template-modern/pages/**/*.vue',
'./src/template-punk/components/**/*.vue',
'./src/template-punk/pages/**/*.vue',
'./src/template-techy/components/**/*.vue',
'./src/template-techy/pages/**/*.vue',
'./src/**/*.vue',
'./public/**/*.html'
],
theme: {
listStyleType: {
none: 'none',
disc: 'disc',
decimal: 'decimal',
square: 'square'
},
extend: {
screens: {
breakXxsm: '320px', // Xxsm
breakXsm: '430px', // Xsm
breakSm: '630px', // Sm
breakMd: '768px', // Md
breakLg: '840px', // Lg
breakXlg: '1024px' // Xlg
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))'
},
boxShadow: {
druShadow: '0px 0px 4px 0px #000000'
},
colors: {
base: {
grey: '#333',
white: 'white',
black: 'black',
ivory: '#fffdf4',
accent: '#ffa500',
accentRed: '#7c0000',
offWhite: '#d7e7f3',
backBlack: '#1f1f1f'
},
modern: {
rubyLight: '#E54379',
ruby: '#D71D5B',
rubyDark: '#AB1748',
rubyDarker: '#7E1135',
accent: '#FFC05C',
accentRed: '#d71d5b',
grey: '#352E38',
backer: '#352E38'
},
bourbon: {
bourbon: '#52090a',
blueDark: '#46646E',
blueMid: '#5B7D96',
blueLight: '#8FA9C2',
accent: '#ECB469',
orange: '#e34234',
paleyellow: '#ffffbf99',
accentRed: '#c02c19',
ivory: '#fffdf4'
},
groovy: {
aqua: '#99f1ec',
yellow: '#ffdd4b',
orange: '#ff9f00',
red: '#ff1a22',
yellowPale: '#ffe985',
aquaDk: '#80cbc7',
yellowDk: '#d3b83e',
orangeDk: '#e78e00',
redDk: '#d5161d',
yellowPaleDk: '#ffdd4b'
},
techy: {
mango: '#ffc600',
blueTech: '#423ba0'
},
corp: {
grey: '#333',
blueDark: '#01487F',
black: '#012946',
blueMid: '#5b7d96',
blueLight: '#8fa9c2',
accent: '#ecb469',
ivory: '#fffdf4',
orange: '#e34234',
paleyellow: '#ffffbf99',
paleBlue: '#7cc3fa',
accentRed: '#C02C19',
white: '#fffdf4'
},
punk: {
red: '#FF0000',
magenta: '#FF4BF5',
peach: '#fbc83f'
}
},
fontFamily: {
base: {
},
//
modernHead: ['Spartan, "Helvetica Neue", Helvetica, sans-serif'],
modernSubhead: ['Spartan, "Helvetica Neue", Helvetica, sans-serif'],
modernCopy: ['Spartan, "Helvetica Neue", Helvetica, sans-serif'],
//
bourbonHead: ['VeneerTwo, Helvetica, Arial, sans-serif'],
bourbonSubhead: ['Veneer, Helvetica, Arial, sans-serif'],
bourbonCopy: ['AmericanTypewriterStd-Med, Helvetica, Times, serif'],
//
groovyHead: ['Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif'],
groovySubhead: ['Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif'],
groovyCopy: ['Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif'],
//
techyHead: ['Dosis, "Helvetica Neue", Arial, sans-serif'],
techySubhead: ['Dosis, "Helvetica Neue", Arial, sans-serif'],
techyCopy: ['Dosis, "Helvetica Neue", Arial, sans-serif'],
//
corpHead: ['Bodoni Moda, Times, serif'],
corpSubhead: ['Bodoni Moda, Times, serif'],
corpCopy: ['Bodoni Moda, Times, serif'],
//
punkHead: ['Poppins, "Helvetica Neue", Helvetica, Arial, sans-serif'],
punkSubhead: ['Poppins, "Helvetica Neue", Helvetica, Arial, sans-serif'],
punkCopy: ['Poppins, "Helvetica Neue", Helvetica, Arial, sans-serif']
},
dropShadow: {
tightBlackDk: '1px 1px 1px hsla(0, 0%, 0%, 1)',
tightBlackMd: '1px 1px 1px hsla(0, 0%, 0%, .5)',
tightBlackLt: '1px 1px 1px hsla(0, 0%, 0%, .25)'
}
}
},
plugins: [
require('tailwind-clip-path'),
require('tailwind-column-rule')
]
}