forked from jjandoc/paquete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
37 lines (36 loc) · 856 Bytes
/
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
/*
** TailwindCSS Configuration File
**
** Docs: https://tailwindcss.com/docs/configuration
** Default: https://github.com/tailwindcss/tailwindcss/blob/master/stubs/defaultConfig.stub.js
*/
const { colors } = require('tailwindcss/defaultTheme');
module.exports = {
important: true,
theme: {
fontFamily: {
sans: ['BentonSans', 'arial'],
condensed: ['BentonSansCondensed', 'BentonSans', 'arial'],
},
fontWeight: {
normal: 400,
medium: 500,
bold: 700,
},
colors: {
black: colors.black,
blue: '#005DC7',
'darker-gray': '#444',
'dark-gray': '#4A4A4A',
'dark-navy': '#000F41',
'dark-red': '#820000',
gray: '#E1E3E6',
navy: '#08285A',
red: '#9E1511',
yellow: '#FFD44D',
white: colors.white,
},
},
variants: {},
plugins: [],
};