Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/default.sass
Original file line number Diff line number Diff line change
@@ -1 +1,11 @@
@import '~bootstrap/scss/bootstrap'

// Set the CSS variable --primary to the value of the bootstrap variable $primary.
// The value of a bootstrap variable is determined at build time. After building, this
// file will be converted to a file default.css with the content:
// * {
// --primary: #0d6efd
// }

*
--primary: #{$primary}
11 changes: 11 additions & 0 deletions src/solar.sass
Original file line number Diff line number Diff line change
Expand Up @@ -189,3 +189,14 @@ $btn-close-color: $body-color !default
$pre-color: inherit !default

@import '~bootstrap/scss/bootstrap'

// Set the CSS variable --primary to the value of the bootstrap variable $primary.
// The value of a bootstrap variable is determined at build time. After building, this
// file will be converted to a file default.css with the content:
// * {
// --primary: #b58900
// }


*
--primary: #{$primary}
6 changes: 6 additions & 0 deletions src/styles.sass
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
/* You can add global styles to this file, and also import other style files */

// Set the background color to the value of the CSS variable --primary.
// The value of a CSS variable may change at runtime if a different stylesheet is loaded.

body
background-color: var(--primary) !important
12 changes: 12 additions & 0 deletions src/united.scss
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,15 @@ $table-dark-bg: $dark !default;
$table-dark-border-color: darken($dark, 5%) !default;

@import '~bootstrap/scss/bootstrap';

// Set the CSS variable --primary to the value of the bootstrap variable $primary.
// The value of a bootstrap variable is determined at build time. After building, this
// file will be converted to a file default.css with the content:
// * {
// --primary: #e95420
// }


* {
--primary: #{$primary};
}
11 changes: 11 additions & 0 deletions src/vapor.scss
Original file line number Diff line number Diff line change
Expand Up @@ -168,3 +168,14 @@ hr:not([size]) {
}

@import '~bootstrap/scss/bootstrap';

// Set the CSS variable --primary to the value of the bootstrap variable $primary.
// The value of a bootstrap variable is determined at build time. After building, this
// file will be converted to a file default.css with the content:
// * {
// --primary: #6f42c1
// }

* {
--primary: #{$primary};
}