@import "~bootstrap/scss/bootstrap";
/* You can add global styles to this file, and also import other style files */ $theme-colors: ( "primary": navy, "secondary": gold ); @import "~bootstrap/scss/bootstrap";
Az ng serve automatikusan fordít mentéskor.
<h1 class="bg-secondary">Valami</h1>
A böngészőben, google keresőbe:
/* You can add global styles to this file, and also import other style files */ @import "~bootstrap/scss/bootstrap"; h2 { background-color: $yellow-100; }
A sorrend fontos.
Itt meg kell ismételni az @import sort:
@import "~bootstrap/scss/bootstrap"; h2 { background-color: $indigo-300; }
A következő példában egy sectitle nevű színt határozok meg.
/* You can add global styles to this file, and also import other style files */ $theme-colors: ( "primary": navy, "sectitle": gold ); @import "~bootstrap/scss/bootstrap";
A szín felhasználása:
<h1 class="bg-sectitle">Valami</h1>