Next.js / TypeScript / Sass / TailwindCSS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

29 lines
636 B

const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
mode: 'jit',
content: ['./src/pages/**/*.{js,ts,jsx,tsx}', './src/components/**/*.{js,ts,jsx,tsx}'],
// darkMode: false,
theme: {
fontFamily: {
ja: [...defaultTheme.fontFamily.sans],
en: [...defaultTheme.fontFamily.sans],
},
extend: {
colors: {
theme: {
light: '#ffffff',
medium: '#cccccc',
DEFAULT: '#242424',
dark: '#111111',
},
primary: {
DEFAULT: '#242424',
},
},
},
},
variants: {
extend: {},
},
plugins: [],
};