Skip to content

Instantly share code, notes, and snippets.

@housemeow
Created January 18, 2024 14:16
Show Gist options
  • Save housemeow/b2b8fc6293c3b32d637566f48ffa6ed1 to your computer and use it in GitHub Desktop.
Save housemeow/b2b8fc6293c3b32d637566f48ffa6ed1 to your computer and use it in GitHub Desktop.
/** @type {import('tailwindcss').Config} */
// eslint-disable-next-line no-undef
module.exports = {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
'regal-blue': '#243c5a',
'primary-1': 'var(--color-primary-1)',
'primary-2': 'var(--color-primary-2)',
'primary-3': 'var(--color-primary-3)',
'primary-4': 'var(--color-primary-4)',
'primary-5': 'var(--color-primary-5)',
'block-light': 'var(--color-block-light)',
'line-black': 'var(--color-line-black)',
'button-brown': 'var(--color-button-brown)',
error: 'var(--color-error)',
white: 'var(--color-white)',
},
},
},
plugins: [],
}
@housemeow
Copy link
Author

housemeow commented Jan 18, 2024

<div class="roi border-solid border-2 bg-color-primary-5 w-full h-full">
    Hello
</div>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment