-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
163 lines (159 loc) · 4.06 KB
/
tailwind.config.js
File metadata and controls
163 lines (159 loc) · 4.06 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
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
153
154
155
156
157
158
159
160
161
162
163
// See the Tailwind default theme values here:
// https://github.com/tailwindcss/tailwindcss/blob/master/stubs/defaultConfig.stub.js
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
plugins: [require('@tailwindcss/typography')],
content: ['./src/**/*.webc', './src/**/*.md'],
// All the default values will be compiled unless they are overridden below
theme: {
// Extend (add to) the default theme in the `extend` key
screens: {
xs: '375px',
mob: '450px',
sm: '640px',
md: '768px',
tab: '860px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px',
hd: '1920px',
},
extend: {
// Create your own at: https://javisperez.github.io/tailwindcolorshades
colors: {
//orange: colors.orange,
blue: {
50: '#E3EBFF',
100: '#D2DFFF',
200: '#B0C6FF',
300: '#8DADFF',
400: '#5472F5',
500: '#3754D1',
600: '#2D2FBC',
650: '#2D3482',
700: '#26289B',
800: '#1B1C76',
900: '#12135A',
1000: '#3754FF',
},
purple: {
50: '#F1E4FF',
100: '#E5D1FB',
200: '#D7BAF8',
300: '#C39DEC',
400: '#B180E6',
500: '#8D5BC3',
600: '#744BA2',
700: '#502E76',
800: '#361659',
900: '#1E0539',
1000: '#8D5BFF',
},
red: {
50: '#FFE3E7',
100: '#FFC8DB',
200: '#FD91B6',
300: '#F45189',
400: '#EF145F',
500: '#E90C3A',
600: '#C80931',
700: '#A60829',
800: '#76041C',
900: '#470211',
1000: '#FC0E38',
},
pink: {
50: '#FFF5FE',
100: '#FFE8FD',
200: '#F4D4E7',
300: '#FEC0CC',
400: '#F688A8',
500: '#DD5E70',
600: '#A54553',
700: '#772C36',
800: '#541F27',
900: '#39161B',
1000: '#FF697E',
},
orange: {
50: '#FFF9F1',
100: '#FEEBD9',
200: '#FFDBB8',
300: '#FFC798',
400: '#F6AC73',
500: '#F08F63',
600: '#E37340',
700: '#BA5020',
800: '#94360C',
900: '#662508',
1000: '#FF6D33',
},
brown: {
50: '#FFF6F2',
100: '#FFE7DC',
200: '#EFDAD0',
300: '#D9C2B8',
400: '#B98984',
500: '#946C68',
600: '#775B63',
700: '#614051',
800: '#3E2632',
900: '#21131A',
1000: '#815150',
},
green: {
50: '#FEFFEF',
100: '#FFFDDC',
200: '#EDEBD1',
300: '#D8D6B9',
400: '#BBC7B0',
500: '#9EA894',
600: '#7C8474',
700: '#61675C',
800: '#464A42',
900: '#272825',
1000: '#83D72F',
},
gold: {
50: '#FFFCF2',
100: '#FEF6E0',
200: '#F9E9BC',
300: '#FFE59C',
400: '#FDDC7F',
500: '#F2C137',
600: '#D2A31F',
700: '#A27B10',
800: '#71570E',
900: '#4F3B04',
1000: '#FFC136',
},
grey: {
100: '#F8F9FA',
200: '#E1E7EC',
300: '#D5DDE5',
400: '#CCD4DB',
500: '#AFBECD',
600: '#93A0B0',
700: '#6F7A8A',
800: '#414B5A',
900: '#202833',
},
},
width: {
128: '32rem',
256: '64rem',
},
backgroundImage: {
'journey-stars':
"url('https://res.cloudinary.com/amorc/image/upload/v1625454523/amorc-stars-4_lh2udj.svg')",
'stella-lattice':
"url('https://res.cloudinary.com/amorc/image/upload/v1678161344/amorc_stella/stella_lattice-pattern-blue_zkbe2k.svg')",
},
fontFamily: {
sans: ['Merriweather', ...defaultTheme.fontFamily.sans],
},
},
},
// Opt-in to TailwindCSS future changes
future: {},
};