const path = require('path'); module.exports = { content: [ path.join(__dirname, 'src/**/*.{js,ts,jsx,tsx,html}'), // ...createGlobPatternsForDependencies(__dirname), ], darkMode: 'class', // or 'media' or 'class' theme: { extend: { colors: { black: 'hsla(0, 0%, 13%, 1)', blue: { 'nx-dark': 'hsla(214, 61%, 11%, 1)', 'nx-base': 'hsla(214, 62%, 21%, 1)', }, green: { 'nx-base': 'hsla(162, 47%, 50%, 1)', }, sidebar: { dark: '#27272a', 'border-dark': '#52525b', 'btn-dark': '#1c1917', 'title-dark': '#f4f4f5', 'text-dark': '#cbd5e1', 'subtitle-dark': '#94a3b8', }, graph: { dark: '#262626', 'text-dark': '#cbd5e1', }, }, typography: { DEFAULT: { css: { 'code::before': { content: '', }, 'code::after': { content: '', }, 'blockquote p:first-of-type::before': { content: '', }, 'blockquote p:last-of-type::after': { content: '', }, }, }, }, }, }, variants: { extend: { translate: ['group-hover'], }, }, plugins: [require('@tailwindcss/typography')], };