|
| 1 | +$bg: $body-bg !default; |
| 2 | +$fg: $body-color !default; |
| 3 | + |
| 4 | +$shiny-disconnected-bg: mix($bg, $fg, 58%) !default; |
| 5 | +$shiny-table-na: mix($bg, $fg, 54%) !default; |
| 6 | +$shiny-error-validated-color: mix($bg, $fg, 50%) !default; |
| 7 | +// TODO: what should this be? mix of primary and bg? |
| 8 | +$shiny-progress-text-bg-color: #eef8ff !default; |
| 9 | +$shiny-input-panel-bg: mix($bg, $fg, 96%) !default; |
| 10 | +$shiny-input-panel-border: $border-width solid $border-color !default; |
| 11 | +$shiny-input-panel-border-radius: $border-radius !default; |
| 12 | +$shiny-text-output-border-radius: $border-radius !default; |
| 13 | +$notification-bg-color: mix($bg, $fg, 90%) !default; |
| 14 | +$notification-color: $fg !default; |
| 15 | +$notification-border: $border-width solid $border-color !default; |
| 16 | +$notification-border-radius: $border-radius !default; |
| 17 | +$notification-message-bg: mix($bg, map-get($theme-colors, "info"), 90%) !default; |
| 18 | +$notification-message-color: mix($fg, map-get($theme-colors, "info"), 10%) !default; |
| 19 | +$notification-message-border: $border-width solid mix($bg, map-get($theme-colors, "info"), 53%) !default; |
| 20 | +$notification-warning-bg: mix($bg, map-get($theme-colors, "warning"), 90%) !default; |
| 21 | +$notification-warning-color: mix($fg, map-get($theme-colors, "warning"), 10%) !default; |
| 22 | +$notification-warning-border: $border-width solid mix($bg, map-get($theme-colors, "warning"), 71%) !default; |
| 23 | +$notification-error-bg: mix($bg, map-get($theme-colors, "danger"), 90%) !default; |
| 24 | +$notification-error-color: mix($fg, map-get($theme-colors, "danger"), 10%) !default; |
| 25 | +$notification-error-border: $border-width solid mix($bg, map-get($theme-colors, "danger"), 79%) !default; |
| 26 | +$notification-close-color: mix($bg, $fg, 20%) !default; |
| 27 | +$notification-close-hover-color: $fg !default; |
| 28 | +$notification-content-action-color: map-get($theme-colors, "primary") !default; |
| 29 | +$datepicker-disabled-color: $dropdown-link-disabled-color !default; |
| 30 | + |
| 31 | +$shiny-file-active-shadow: $custom-file-focus-box-shadow !default; |
| 32 | + |
| 33 | +// TODO: should this be changed to danger? |
| 34 | +//$shiny-error-color: red !default; |
0 commit comments