awesome-mechanical-keyboard/tailwind.config.js
BenRoe 30aabfbd5c Change structure for Gridsome
To make the content more unfriendly, i restructured the content and use [Gridsome](https://gridsome.org) as Static Site Generator.
The content will be visible on https://keebfol.io and is still view-able on GitHub. Navigate to the docs folder.
2019-07-13 19:16:00 +02:00

30 lines
518 B
JavaScript
Executable File

module.exports = {
theme: {
extend: {
colors: {
'primary': {
light: '#4ECDC4',
default: '#00B5A8',
dark: '#0B4C51',
},
'secondary': {
light: '#FF8C8C',
default: '#FF6B6B',
dark: '#DD3939',
},
},
'highlight': {
light: '#FFED96',
default: '#FFE66D',
dark: '#D6B513',
},
},
},
variants: {
// Some useful comment
},
plugins: [
// Some useful comment
]
}