This repository has been archived on 2025-01-07. You can view files and clone it, but cannot push or open issues or pull requests.
rebuilding-bartik/tailwind.config.js

46 lines
807 B
JavaScript
Raw Permalink Normal View History

2019-03-10 00:15:05 +00:00
module.exports = {
theme: {
colors: {
2019-03-10 00:17:43 +00:00
black: {
default: '#22292f',
2019-03-30 00:13:30 +00:00
60: 'rgba(0,0,0,.6)'
2019-03-10 00:17:43 +00:00
},
blue: {
100: '#bcdefa',
200: '#3490dc',
2019-03-30 00:13:30 +00:00
300: '#2779bd'
2019-03-10 00:17:43 +00:00
},
2019-03-10 00:31:37 +00:00
green: {
100: '#f3faee',
200: '#cde2c2',
300: '#77b159',
2019-03-30 00:13:30 +00:00
400: '#325e1c'
2019-03-10 00:17:43 +00:00
},
2019-03-10 00:31:37 +00:00
grey: {
100: '#f6f6f2',
200: '#f0f0f0',
300: '#dae1e7',
400: '#b8c2cc',
500: '#8795a1',
2019-03-30 00:13:30 +00:00
600: '#3d4852'
2019-03-10 00:17:43 +00:00
},
2019-03-10 12:54:10 +00:00
transparent: 'transparent',
2019-03-30 00:13:30 +00:00
white: '#fff'
2019-03-10 00:15:05 +00:00
},
extend: {
2019-03-21 00:27:30 +00:00
fontFamily: {
2019-03-30 00:13:30 +00:00
sans: ['sans-serif']
2019-03-21 00:27:30 +00:00
},
2019-03-10 00:15:05 +00:00
fontSize: {
2019-03-30 00:13:30 +00:00
'3xl': '1.75rem'
2019-03-10 00:15:05 +00:00
},
maxWidth: {
2019-03-30 00:13:30 +00:00
'6xl': '80rem'
}
}
2019-03-10 00:15:05 +00:00
},
plugins: [
2019-03-30 00:13:30 +00:00
require('tailwindcss-skip-link')()
2019-03-10 00:15:05 +00:00
]
}