@5minds/processcube_docflow
Version:
Create webpage to view process documentation
48 lines (46 loc) • 1.09 kB
JavaScript
import { nextui } from '@nextui-org/react';
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
'5minds-orange': '#f7a823',
'5minds-secondary': '#9ca3af',
'5minds-focus': '#f7a823',
},
},
fontFamily: {
['mark-medium']: ['var(--font-mark-medium)'],
},
},
darkMode: 'class',
plugins: [
nextui({
themes: {
dark: {
colors: {
background: '#1d1d1d',
primary: {
DEFAULT: '#f7a823', // 5minds orange
foreground: '#000000',
},
secondary: {
DEFAULT: '#9ca3af',
foreground: 'white',
},
focus: {
DEFAULT: '#f7a823',
foreground: '#ffffff',
},
},
},
},
}),
],
};