Skip to content

Using dark mode with an alternate color palette #3821

Answered by vitto
vitto asked this question in Help
Discussion options

You must be logged in to vote

I've found a solution, I can use PurgeCSS config directly in Tailwind, I was missing it was possible:

module.exports = {
purge: {
    content: [ './src/**/*.{js,jsx}' ],
    variables: true,
  },
  theme: {
    colors: {
      transparent: 'transparent',
      current: 'currentColor',
      blue:
        '01': 'var(--blue-01)',
        '02': 'var(--blue-02)',
        '03': 'var(--blue-03)',
        '04': 'var(--blue-04)',
        '05': 'var(--blue-05)'
    },
  ...
}

In facts, in PurgeCSS config, there is an option variables that do the trick.

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by vitto
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Help
Labels
None yet
1 participant