-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
35 lines (34 loc) · 1.16 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
/* eslint-disable @typescript-eslint/no-var-requires, import/no-extraneous-dependencies */
const colors = require('tailwindcss/colors');
const pluginTypography = require('@tailwindcss/typography');
module.exports = {
purge: ['./src/components/**/*.{js,ts,jsx,tsx}', './src/pages/**/*.{js,ts,jsx,tsx}'],
darkMode: 'media',
theme: {
container: {
padding: '1.5rem',
},
extend: {
colors: {
white: '#fff',
textColor: '#080539',
'stupo-main': colors.lightBlue,
'stupo-main-complement': colors.orange,
'stupo-compass': colors.purple,
'stupo-compass-complement': colors.lightBlue,
'stupo-quiz': colors.yellow,
'stupo-quiz-complement': colors.lightBlue,
'stupo-blog': colors.orange,
'stupo-blog-complement': colors.rose,
'stupo-tools': colors.red,
'stupo-tools-complement': colors.indigo,
'stupo-pupil': colors.lime,
'stupo-pupil-complement': colors.purple,
'stupo-teacher': colors.rose,
'stupo-teacher-complement': colors.green,
},
},
},
variants: { extend: { padding: ['first', 'last'] } },
plugins: [pluginTypography],
};