1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

31 lines
895 B
SCSS
Raw Normal View History

2021-04-26 00:31:51 -07:00
// Light Mode Theme Variables and Overrides.
2021-04-25 20:11:46 -07:00
@import './theme-base.scss';
2021-03-13 02:31:46 -07:00
2021-04-25 20:11:46 -07:00
$input-border-color: $gray-200;
2021-03-13 02:31:46 -07:00
// On import, any variables marked `!default` will be overridden by the above.
@import 'bootstrap/scss/variables';
// Merge/modify bootstrap variables.
2021-04-25 20:11:46 -07:00
2021-03-13 02:31:46 -07:00
$theme-colors: map-merge($theme-colors, $theme-color-addons);
2021-04-25 20:11:46 -07:00
$light: $gray-100;
2021-03-13 02:31:46 -07:00
$card-cap-color: $gray-800;
2021-04-26 00:31:51 -07:00
$accordion-bg: transparent;
$accordion-button-bg: $accordion-bg;
2021-05-25 17:57:37 -07:00
$accordion-body-active-bg: $gray-50;
$accordion-border-color: $border-color;
$accordion-button-active-bg: $blue-100;
$accordion-button-active-color: $gray-800;
2021-04-26 00:31:51 -07:00
2021-03-13 02:31:46 -07:00
$breadcrumb-divider: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z' fill='currentColor'/%3E%3C/svg%3E");
2021-05-07 09:16:05 -07:00
$code-color: $gray-900;
2021-05-07 13:25:01 -07:00
$list-group-color: $gray-700;
$list-group-disabled-color: $gray-500;