2020-09-27 21:05:58 +02:00
|
|
|
/*
|
|
|
|
** TailwindCSS Configuration File
|
|
|
|
**
|
|
|
|
** Docs: https://tailwindcss.com/docs/configuration
|
|
|
|
** Default: https://github.com/tailwindcss/tailwindcss/blob/master/stubs/defaultConfig.stub.js
|
|
|
|
*/
|
|
|
|
module.exports = {
|
|
|
|
theme: {
|
|
|
|
colors: {
|
|
|
|
'black': '#000',
|
|
|
|
'white': '#fff',
|
|
|
|
|
2020-09-30 02:20:11 +02:00
|
|
|
'gray-0': '#333',
|
|
|
|
'gray-1': '#888',
|
|
|
|
|
2020-09-27 21:05:58 +02:00
|
|
|
'purple-0': '#04254e',
|
|
|
|
'purple-1': '#5954a4',
|
|
|
|
'purple-2': '#8a54a2',
|
|
|
|
'purple-3': '#8ad5eb',
|
2020-09-28 01:53:26 +02:00
|
|
|
'purple-3-1': '#bee7f4',
|
|
|
|
|
2020-09-30 02:20:11 +02:00
|
|
|
'text-gray-1': '#bbb',
|
2020-09-30 15:21:39 +02:00
|
|
|
'text-gray-2': '#fff',
|
2020-09-30 15:41:51 +02:00
|
|
|
'text-warn-1': '#fc0',
|
2020-09-30 02:20:11 +02:00
|
|
|
'text-error-1': '#d40'
|
2020-09-27 21:05:58 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
screens: {
|
|
|
|
'sm': '660px',
|
|
|
|
'md': '768px',
|
|
|
|
'lg': '1024px',
|
|
|
|
'xl': '1280px',
|
2020-09-30 15:21:39 +02:00
|
|
|
'fhd': '1870px',
|
2020-09-27 21:05:58 +02:00
|
|
|
'wqhd': '2480px',
|
|
|
|
|
|
|
|
'break-header': '950px',
|
|
|
|
}
|
|
|
|
},
|
|
|
|
variants: {},
|
|
|
|
plugins: [],
|
|
|
|
|
|
|
|
}
|