-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
75 lines (71 loc) · 1.68 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
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
colors: {
'my-black-color': '#ffffff',
'my-gold-color': '#460A98',
},
extend: {
gridTemplateColumns: {
// Simple 16 column grid
'header-grid': '1fr 2fr 2fr',
'small-grid':'1fr 1fr 0.5fr',
// Complex site-specific column configuration
'footer': '200px minmax(900px, 1fr) 100px',
},
spacing: {
'13': '3.25rem',
'76': '19rem',
'100': '410px',
'144': '36rem',
'190':'190px',
'120':'36px',
'300':'300px',
'400':'400px',
'800':'800px',
'82':'345px',
'220':'220px',
'350':'350px',
'34':'115px',
'500':'540px',
'685':'680px',
'130':'130px',
'180': '345px',
'450':'440px',
'640':'640px',
'690':'710px',
'700':'715px',
'800':'750px',
},
gradientColorStops: theme => ({
'primary': '#ff0d0d',
'secondary': '#0009cc',
'danger': '#FFD700',
}),
borderWidth: {
DEFAULT: '1px',
'1': '1px',
},
// backgroundColor:{
// 'header-color':'#232323',
// 'gold-bg-color':'#b6a35e'
// },
// textColor:{
// 'gold-text-color':'#b6a35e',
// 'black-text-color':'#232323'
// },
// placeholderColor:{
// 'gold-text-color':'#b6a35e',
// 'black-text-color':'#232323'
// }
},
},
variants: {
extend: {},
},
plugins: [
require('tailwind-scrollbar-hide'),
require('./text-gradient')
],
}