Last active
August 18, 2024 14:58
-
-
Save faizbyp/f18c40f497cb6e309094ff88435563bd to your computer and use it in GitHub Desktop.
Custom Bootstrap 5 Starter
This file contains 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
// Importing fonts | |
@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap'); | |
// Include functions first (so you can manipulate colors, SVGs, calc, etc) | |
@import "../node_modules/bootstrap/scss/functions"; | |
// Include any default variable overrides here | |
$primary: #2789d8; | |
$theme-colors: ( | |
// Override theme (removing the original theme) | |
); | |
// Use this to just add some colors | |
// $theme-colors: map-merge($theme-colors, $custom-colors); | |
// Changing font base | |
$font-family-base: 'Ubuntu', sans-serif; | |
@import "../node_modules/bootstrap/scss/variables"; | |
// Include any default map overrides here | |
@import "../node_modules/bootstrap/scss/bootstrap"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Minimal CSS Var Customize