Files
CHIEFSOFT\ameye 346346573f first commit
2024-01-25 13:06:29 -05:00

94 lines
4.6 KiB
SCSS

// Dark color mode variables
//
// Custom variables for the `[data-bs-theme="dark"]` theme. Use this as a starting point for your own custom color modes by creating a new theme-specific file like `_variables-dark.scss` and adding the variables you need.
//
// Global colors
//
// scss-docs-start sass-dark-mode-vars
// scss-docs-start theme-text-dark-variables
$primary-text-emphasis-dark: tint-color($primary, 10%);
$secondary-text-emphasis-dark: tint-color($secondary, 10%);
$success-text-emphasis-dark: tint-color($success, 10%);
$info-text-emphasis-dark: tint-color($info, 10%);
$warning-text-emphasis-dark: tint-color($warning, 10%);
$danger-text-emphasis-dark: tint-color($danger, 10%);
$light-text-emphasis-dark: $gray-100;
$dark-text-emphasis-dark: $gray-300;
// scss-docs-end theme-text-dark-variables
// scss-docs-start theme-bg-subtle-dark-variables
$primary-bg-subtle-dark: shade-color($primary, 60%);
$secondary-bg-subtle-dark: shade-color($secondary, 60%);
$success-bg-subtle-dark: shade-color($success, 60%);
$info-bg-subtle-dark: shade-color($info, 60%);
$warning-bg-subtle-dark: shade-color($warning, 60%);
$danger-bg-subtle-dark: shade-color($danger, 60%);
$light-bg-subtle-dark: $gray-800;
$dark-bg-subtle-dark: lighten($gray-900, 2.5);
// scss-docs-end theme-bg-subtle-dark-variables
// scss-docs-start theme-border-subtle-dark-variables
$primary-border-subtle-dark: shade-color($primary, 40%);
$secondary-border-subtle-dark: shade-color($secondary, 40%);
$success-border-subtle-dark: shade-color($success, 40%);
$info-border-subtle-dark: shade-color($info, 40%);
$warning-border-subtle-dark: shade-color($warning, 40%);
$danger-border-subtle-dark: shade-color($danger, 40%);
$light-border-subtle-dark: $gray-700;
$dark-border-subtle-dark: $gray-800;
// scss-docs-end theme-border-subtle-dark-variables
$light-dark: $gray-700;
$body-color-dark: $gray-100;
$body-bg-dark: $gray-900;
$body-emphasis-color-dark: $gray-100;
$body-secondary-color-dark: #7f8f9f;
$body-secondary-bg-dark: $gray-800;
$body-tertiary-color-dark: rgba($body-color-dark, .75);
$body-tertiary-bg-dark: lighten($gray-800, 2.5);
$emphasis-color-dark: $white;
$border-color-dark: $gray-700;
$border-color-translucent-dark: $gray-700;
$headings-color-dark: $gray-200;
$link-color-dark: $blue-300;
$link-hover-color-dark: $blue-200;
$code-color-dark: $pink-300;
$mark-color-dark: $body-color-dark;
$mark-bg-dark: $yellow-800;
//
// Forms
//
$form-select-indicator-color-dark: $body-color-dark;
$form-select-indicator-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='#{$form-select-indicator-color-dark}' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/></svg>");
$form-switch-color-dark: rgba($white, .25);
$form-switch-bg-image-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='#{$form-switch-color-dark}'/></svg>");
// scss-docs-start form-validation-colors-dark
$form-valid-color-dark: $green-300;
$form-valid-border-color-dark: $green-300;
$form-invalid-color-dark: $red-300;
$form-invalid-border-color-dark: $red-300;
// scss-docs-end form-validation-colors-dark
//
// Accordion
//
$accordion-icon-color-dark: $primary-text-emphasis-dark;
$accordion-icon-active-color-dark: $primary-text-emphasis-dark;
$accordion-button-icon-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$primary-text-emphasis-dark}'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
$accordion-button-active-icon-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$primary-text-emphasis-dark}'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
// scss-docs-end sass-dark-mode-vars
// Topbar
$header-bg-dark: $white;
$header-item-color-dark: $gray-800;
$top-tagbar-bg-dark: $blue-600;