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

43 lines
733 B
JavaScript
Raw 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-11 17:47:45 +00:00
60: 'rgba(0,0,0,.6)',
2019-03-10 00:17:43 +00:00
},
blue: {
2019-03-11 17:47:45 +00:00
1: '#bcdefa',
2: '#3490dc',
3: '#2779bd',
2019-03-10 00:17:43 +00:00
},
2019-03-10 00:31:37 +00:00
green: {
2019-03-11 17:47:45 +00:00
1: '#f3faee',
2: '#cde2c2',
3: '#77b159',
4: '#325e1c',
2019-03-10 00:17:43 +00:00
},
2019-03-10 00:31:37 +00:00
grey: {
2019-03-11 17:47:45 +00:00
1: '#f6f6f2',
2: '#f0f0f0',
3: '#dae1e7',
4: '#b8c2cc',
5: '#8795a1',
6: '#3d4852',
2019-03-10 00:17:43 +00:00
},
2019-03-10 12:54:10 +00:00
transparent: 'transparent',
white: '#fff',
2019-03-10 00:15:05 +00:00
},
extend: {
fontSize: {
'3xl': '1.75rem',
},
maxWidth: {
'6xl': '80rem',
},
},
},
plugins: [
require('tailwindcss-skip-link')(),
]
}