librenms/tailwind.config.js
Tony Murray 2687fc509e
Improve tailwind dark theme colors (#13262)
* Improve tailwind dark theme colors
Import the dark theme colors into the Tailwind color palette
update components to use those new colors

* remove colors import, it isn't used right now
2021-09-23 15:38:41 +02:00

38 lines
755 B
JavaScript

module.exports = {
prefix: 'tw-',
purge: [
'./storage/framework/views/*.php',
'./resources/**/*.blade.php',
'./resources/**/*.js',
'./resources/**/*.vue',
],
darkMode: 'class',
theme: {
extend: {
colors: {
dark: {
'gray-100': '#4f565d',
'gray-200': '#3e444c',
'gray-300': '#353a41',
'gray-400': '#2e3338',
'gray-500': '#272b30',
'white-100': '#f9fafb',
'white-200': '#c8c8c8',
'white-300': '#bebfbf',
'white-400': '#acb6bf',
}
}
},
screens: {
'sm': '576px',
'md': '768px',
'lg': '992px',
'xl': '1200px',
}
},
variants: {
extend: {},
},
plugins: [],
}