mirror of
https://github.com/Automattic/harper.git
synced 2025-07-08 05:25:02 +00:00
28 lines
509 B
JavaScript
28 lines
509 B
JavaScript
import flowbitePlugin from 'flowbite/plugin';
|
|
|
|
export default {
|
|
content: [
|
|
'./src/**/*.{html,js,svelte,ts}',
|
|
'./node_modules/flowbite-svelte/**/*.{html,js,svelte,ts}',
|
|
],
|
|
plugins: [flowbitePlugin],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: {
|
|
900: '#133f71',
|
|
800: '#355280',
|
|
700: '#50658f',
|
|
600: '#69799f',
|
|
500: '#818eae',
|
|
400: '#9aa4be',
|
|
300: '#b3bace',
|
|
200: '#ccd0de',
|
|
100: '#e5e7ef',
|
|
50: '#ffffff',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|