workshop-tailwind-css/tailwind.config.js

32 lines
604 B
JavaScript
Raw Normal View History

2021-02-11 12:00:00 +00:00
module.exports = {
purge: [],
darkMode: false, // or 'media' or 'class'
theme: {
2021-02-17 22:01:42 +00:00
fontFamily: {
display: ['Bebas Neue', 'Arial Narrow', 'Arial', 'sans-serif'],
sans: ['Helvetica', 'Arial', 'sans-serif'],
},
colors: {
blue: {
DEFAULT: '#56a9db',
dark: '#1772ae',
},
gray: {
dark: '#333333',
},
orange: '#fcb040',
white: '#ffffff',
},
extend: {
fontSize: {
'2xl': '1.5625rem', // 25px
'3xl': '1.6875rem', // 27px
},
},
2021-02-11 12:00:00 +00:00
},
variants: {
extend: {},
},
plugins: [],
};