This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** @type {import('tailwindcss').Config} */ | |
// * Novagon UI 4 tailwindcss config | |
module.exports = { | |
content: [ | |
"./src/**/*.{js,jsx,ts,tsx}", | |
], | |
theme: { | |
extend: { | |
colors:{ | |
primaryBlue:{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300&display=swap'); | |
body { | |
background-color: #000000; | |
font-family: 'Rubik', sans-serif; | |
} | |
h1{ | |
font-family: 'Century Gothic', sans-serif; | |
font-size: 2.5rem; | |
color: #fff; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let ts = true; | |
if(ts) { | |
console.log('I LOVE TypeScript'); | |
ts = false; | |
}else { | |
console.log('I hate TypeScript'); | |
} | |
//? what will the output be? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a , li { | |
color: rgb(224, 224, 224); | |
transition: color 0.1s ease-out 10ms | |
} | |
a:hover { | |
color: rgb(129, 129, 129); | |
} |