-
Notifications
You must be signed in to change notification settings - Fork 144
/
tailwind.config.js
41 lines (40 loc) · 1.02 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
const colors = require('tailwindcss/colors')
module.exports = {
purge: ['./src/**/*.html', './src/**/*.js', './src/**/*.tsx'],
darkMode: false, // or 'media' or 'class'
theme: {
screens: {
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
'2xl': '1536px',
},
container: {
center: true,
},
backgroundImage: {
'contribution': "url('/assets/contribution.png')",
},
colors: {
kratos: {
400: "#38bdf3",
500: "#23ade5",
},
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
gray: colors.trueGray,
indigo: colors.indigo,
red: colors.rose,
yellow: colors.amber,
}
},
variants: {
extend: {},
},
plugins: [
require('@tailwindcss/typography'),
],
}