librenms/tailwind.config.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
803 B
JavaScript
Raw Permalink Normal View History

module.exports = {
prefix: 'tw-',
2022-01-27 01:10:56 +00:00
content: [
'./storage/framework/views/*.php',
'./resources/**/*.blade.php',
'./resources/**/*.js',
'./resources/**/*.vue',
'./html/js/boot.js',
],
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',
}
},
borderWidth: {
'0.5': '0.5px',
}
},
screens: {
'sm': '576px',
'md': '768px',
'lg': '992px',
'xl': '1200px',
}
},
plugins: [],
}