Skip to content

Instantly share code, notes, and snippets.

@trainspotter-rhld
Created September 6, 2022 13:38
Show Gist options
  • Save trainspotter-rhld/8dd59185b870d4c4cffc2b80430965b8 to your computer and use it in GitHub Desktop.
Save trainspotter-rhld/8dd59185b870d4c4cffc2b80430965b8 to your computer and use it in GitHub Desktop.
tailwind css novaui config
/** @type {import('tailwindcss').Config} */
// * Novagon UI 4 tailwindcss config
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors:{
primaryBlue:{
primary: '#00B0F0',
50: '#00E0FF',
},
gray:{
secondary: '#404040',
100: '#A8A8A8',
},
},
fontFamily: {
albertsans: "'Albert Sans', sans-serif"
},
},
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment