92 lines
2.9 KiB
SCSS
92 lines
2.9 KiB
SCSS
// LMS - utilities - variables
|
|
// ====================
|
|
|
|
// #GRID: Grid and layout variables
|
|
// #COLORS: Base, palette and theme color definitions + application
|
|
// #TYPOGRAPHY: Font definitions and scales
|
|
// #ICONS: Icon specific colors + other styling
|
|
|
|
// ----------------------------
|
|
// #GRID
|
|
// ----------------------------
|
|
$grid-breakpoints-sm: 576px !default;
|
|
$grid-breakpoints-md: 768px !default;
|
|
$grid-breakpoints-lg: 992px !default;
|
|
|
|
// ----------------------------
|
|
// #COLORS
|
|
// ----------------------------
|
|
|
|
$gray: $gray-600 !default;
|
|
$lms-container-background-color: theme-color("inverse") !default;
|
|
$lms-preview-menu-color: $gray-400 !default;
|
|
$success-color-hover: darken($success, 15%) !default;
|
|
$lms-hero-color: #005e90 !default;
|
|
|
|
$button-bg-hover-color: $white !default;
|
|
|
|
$white-transparent: rgba(255, 255, 255, 0) !default;
|
|
$white-opacity-40: rgba(255, 255, 255, 0.4) !default;
|
|
$white-opacity-60: rgba(255, 255, 255, 0.6) !default;
|
|
$white-opacity-70: rgba(255, 255, 255, 0.7) !default;
|
|
$white-opacity-80: rgba(255, 255, 255, 0.8) !default;
|
|
|
|
$black: rgb(0, 0, 0) !default;
|
|
$black-t0: rgba($black, 0.125) !default;
|
|
$black-t1: rgba($black, 0.25) !default;
|
|
$black-t2: rgba($black, 0.5) !default;
|
|
$black-t3: rgba($black, 0.75) !default;
|
|
|
|
$light-grey-transparent: rgba(200, 200, 200, 0) !default;
|
|
$light-grey-solid: rgba(200, 200, 200, 1) !default;
|
|
|
|
$header-border-color: $gray-l1 !default;
|
|
|
|
$table-bg-accent: #f9f9f9 !default;
|
|
|
|
// ----------------------------
|
|
// #TYPOGRAPHY
|
|
// ----------------------------
|
|
$font-light: 300 !default;
|
|
$font-regular: 400 !default;
|
|
$font-semibold: 600 !default;
|
|
$font-bold: 700 !default;
|
|
|
|
// ----------------------------
|
|
// #ICONS
|
|
// ----------------------------
|
|
// Icons
|
|
$lms-dark-icon-color: $white !default;
|
|
$lms-dark-icon-background-color: palette(grayscale, black) !default;
|
|
|
|
$site-status-color: rgb(182, 37, 103) !default;
|
|
|
|
$shadow-l1: rgba(0, 0, 0, 0.1) !default;
|
|
|
|
$error-color: rgb(203, 7, 18) !default;
|
|
$warning-color: rgb(255, 192, 31) !default;
|
|
$confirm-color: rgb(0, 132, 1) !default;
|
|
$active-color: $blue !default;
|
|
$highlight-color: rgb(255, 255, 0) !default;
|
|
$alert-color: rgb(212, 64, 64) !default;
|
|
|
|
// ----------------------------
|
|
// #ALERTS
|
|
// ----------------------------
|
|
|
|
$state-success-text: $black !default;
|
|
$state-success-bg: #dff0d8 !default;
|
|
$state-success-border: darken($state-success-bg, 5%) !default;
|
|
|
|
$state-info-text: $black !default;
|
|
$state-info-bg: #d9edf7 !default;
|
|
$state-info-border: darken($state-info-bg, 7%) !default;
|
|
|
|
$state-warning-text: $black !default;
|
|
$state-warning-bg: #fcf8e3 !default;
|
|
$state-warning-border: darken($state-warning-bg, 5%) !default;
|
|
|
|
$state-danger-text: $black !default;
|
|
$state-danger-bg: #f2dede !default;
|
|
$state-danger-border: darken($state-danger-bg, 5%) !default;
|