yastpack icon indicating copy to clipboard operation
yastpack copied to clipboard

Customizing Colors

Open jannesblobel opened this issue 4 years ago • 0 comments

Hi Everyone I defined a custom color 'myblue' in the tailwind config file. The VSCode extension Tailwind-intellisense recognizes the custom color but the color is not shown in the UI

tailwind.config.js

module.exports = { purge: [], darkMode: false, // or 'media' or 'class' theme: {

colors:{      
  myblue: '#0061FF',
  DEFAULT: '#5c6ac4',
  dark: '#202e78',
},

}, variants: { extend: {}, }, plugins: [], }

I believe the import of the config failed. I hope, anybody can help me and fix my/the issue.

jannesblobel avatar Feb 12 '21 09:02 jannesblobel