$neutral-light: (
00: #FFFFFF,
05: #F9F9F9,
10: #F1F1F1,
15: #E3E3E3,
20: #D5D5D5,
25: #C6C6C6,
30: #AAAAAA,
40: #8E8E8E,
50: #717171,
60: #555555,
70: #393939,
80: #1C1C1C,
90: #121212,
transparent-1: rgba( 0, 0, 0, 0.05),
transparent-2: rgba( 0, 0, 0, 0.1),
transparent-3: rgba( 0, 0, 0, 0.25),
transparent-4: rgba( 0, 0, 0, 0.1),
);
@use 'sass:map';
// Light Mode 🌞 //
// State 🌞
// critical UI states
$state-info: map-get($blue-palette, 20);
$state-error: map-get($red-palette, 20);
$state-caution: map-get($orange-palette, 20);
$state-favorite: map-get($ocre-palette, 20);
$state-success: map-get($green-palette, 20);
$state-info-background: map-get($teal-palette, 00);
$state-caution-background: map-get($orange-palette, 00);
$state-error-background: map-get($red-palette, 00);
$state-success-background: map-get($green-palette, 00);
$state-info-hover: map-get($blue-palette, 40);
$state-error-hover: map-get($red-palette, 40);
$state-caution-hover: map-get($orange-palette, 40);
$state-success-hover: map-get($green-palette, 40);
// Foundation 🌞
// backgrounds, modals, elevated surfaces, icon backgrounds, menu items
$foundation-base-1: map-get($neutral-palette, 05);
$foundation-base-2: map-get($neutral-palette, 10);
$foundation-surface-1: map-get($neutral-palette, 00);
$foundation-surface-2: map-get($neutral-palette, 90);
$foundation-surface-3: map-get($accent-palette, 30);
$foundation-hover: map-get($neutral-palette, 05);
// Icon 🌞
$icon-1: map-get($neutral-palette, 30);
$icon-2: map-get($neutral-palette, 60);
$icon-overdue: $state-error;
$icon-active: $state-success;
// text 🌞
// text colors that are not color-themed
$text-placeholder: map-get($neutral-palette, 40);
$text-default: map-get($neutral-palette, 60);
$text-surface: map-get($neutral-palette, 00);
$text-hover: map-get($neutral-palette, 70);
$text-active: map-get($neutral-palette, 80);
$text-active-vibrant: map-get($teal-palette, 20);
$text-hover-vibrant: map-get($teal-palette, 30);
$text-pressed: map-get($neutral-palette, 80);
$text-disabled: map-get($neutral-palette, 30);
// Border 🌞
// default elements such as text inputs
// $border-surface-1/2 is use in conjunction with $foundation-surface-1/2 to form containers like modals and cards
$border-surface-1: map-get($neutral-palette, 10);
$border-surface-2: map-get($neutral-palette, 15);
$border-surface-3: map-get($accent-palette, 30);
$border-default: map-get($neutral-palette, 40);
$border-hover: map-get($neutral-palette, 60);
$border-active: $state-info;
$border-disabled: map-get($neutral-palette, 25);
// accent primary 🌞
// primary button fills
$accent-primary-default: map-get($accent-palette, 30);
$accent-primary-hover: map-get($accent-palette, 50);
$accent-primary-pressed: map-get($accent-palette, 60);
$accent-primary-disabled: map-get($neutral-palette, 15);
// accent secondary 🌞
// secondary buttons fills
$accent-secondary-default: $foundation-surface-1;
$accent-secondary-hover: map-get($accent-palette, 00);
$accent-secondary-pressed: map-get($accent-palette, 05);
$accent-secondary-disabled: map-get($neutral-palette, 15);
// accent border 🌞
$accent-border-default: map-get($accent-palette, 20);
$accent-border-hover: map-get($accent-palette, 30);
$accent-border-disabled: map-get($neutral-palette, 25);
// accent text 🌞
$accent-text-placeholder: map-get($accent-palette, 15);
$accent-text-default: map-get($accent-palette, 30);
$accent-text-hover: map-get($accent-palette, 40);
$accent-text-active: map-get($accent-palette, 70);
$accent-text-pressed: map-get($accent-palette, 70);
$accent-text-disabled: map-get($neutral-palette, 30);
// accent toggle 🌞
$accent-toggle-off: map-get($neutral-palette, 00); // toggle switch
$accent-toggle-on: map-get($accent-palette, 00); // toggle switch
$accent-toggle-default: map-get($accent-palette, 05); // toggle switch bg
$accent-toggle-hover: map-get($accent-palette, 10); // toggle switch bg
$accent-toggle-active: map-get($accent-palette, 30); // toggle switch bg
$accent-toggle-active-hover: map-get($accent-palette, 20); // toggle switch
$accent-toggle-disabled: map-get($neutral-palette, 20); // toggle switch bg
// Badge 🌞
$trainual-purple: map-get($violet-palette, 30);
$badge-error: $state-error;
$badge-caution: $state-caution;
$badge-success: $state-success;
$badge-info: $state-info;
$badge-general: map-get($neutral-palette, 50);
// CHARTS AND GRAPHS
// Chart onw 🌞
$chart-one-00: map-get($blue-palette, 00);
$chart-one-05: map-get($blue-palette, 05);
$chart-one-10: map-get($blue-palette, 10);
$chart-one-15: map-get($blue-palette, 15);
$chart-one-20: map-get($blue-palette, 20);
$chart-one-30: map-get($blue-palette, 30);
$chart-one-40: map-get($blue-palette, 40);
$chart-one-50: map-get($blue-palette, 50);
$chart-one-60: map-get($blue-palette, 60);
$chart-one-70: map-get($blue-palette, 70);
$chart-one-80: map-get($blue-palette, 80);
$chart-one-90: map-get($blue-palette, 90);
// Chart two 🌞
$chart-two-00: map-get($green-palette, 00);
$chart-two-05: map-get($green-palette, 05);
$chart-two-10: map-get($green-palette, 10);
$chart-two-15: map-get($green-palette, 15);
$chart-two-20: map-get($green-palette, 20);
$chart-two-30: map-get($green-palette, 30);
$chart-two-40: map-get($green-palette, 40);
$chart-two-50: map-get($green-palette, 50);
$chart-two-60: map-get($green-palette, 60);
$chart-two-70: map-get($green-palette, 70);
$chart-two-80: map-get($green-palette, 80);
$chart-two-90: map-get($green-palette, 90);
// Chart three 🌞
$chart-three-00: map-get($orange-palette, 00);
$chart-three-05: map-get($orange-palette, 05);
$chart-three-10: map-get($orange-palette, 10);
$chart-three-15: map-get($orange-palette, 15);
$chart-three-20: map-get($orange-palette, 20);
$chart-three-30: map-get($orange-palette, 30);
$chart-three-40: map-get($orange-palette, 40);
$chart-three-50: map-get($orange-palette, 50);
$chart-three-60: map-get($orange-palette, 60);
$chart-three-70: map-get($orange-palette, 70);
$chart-three-80: map-get($orange-palette, 80);
$chart-three-90: map-get($orange-palette, 90);
// chart four 🌞
$chart-four-00: map-get($red-palette, 00);
$chart-four-05: map-get($red-palette, 05);
$chart-four-10: map-get($red-palette, 10);
$chart-four-15: map-get($red-palette, 15);
$chart-four-20: map-get($red-palette, 20);
$chart-four-30: map-get($red-palette, 30);
$chart-four-40: map-get($red-palette, 40);
$chart-four-50: map-get($red-palette, 50);
$chart-four-60: map-get($red-palette, 60);
$chart-four-70: map-get($red-palette, 70);
$chart-four-80: map-get($red-palette, 80);
$chart-four-90: map-get($red-palette, 90);
// drop shadow color only 🌞
$shadow-color-top-xsmall: map-get($neutral-palette, transparent-3);
$shadow-color-top-small: map-get($neutral-palette, transparent-1);
$shadow-color-top-medium: map-get($neutral-palette, transparent-2);
$shadow-color-top-large: map-get($neutral-palette, transparent-2);
$shadow-color-center-small: map-get($neutral-palette, transparent-1);
$shadow-color-center-medium: map-get($neutral-palette, transparent-2);
$shadow-color-center-large: map-get($neutral-palette, transparent-2);
$shadow-color-special-wysiwyg: map-get($neutral-palette, transparent-3);
$shadow-color-special-data-table: map-get($neutral-palette, transparent-4);
// drop shadows 🌞 // SaSS doesn't like these but we want to be able to include the color with the box shadow size
$shadow-top-xsmall: 0 1px 3px map-get($neutral-palette, transparent-3);
$shadow-top-small: 0 5px 10px map-get($neutral-palette, transparent-1);
$shadow-top-medium: 0 5px 15px map-get($neutral-palette, transparent-2);
$shadow-top-large: 0 5px 40px map-get($neutral-palette, transparent-2);
$shadow-center-small: 0 0 10px map-get($neutral-palette, transparent-1);
$shadow-center-medium: 0 0 15px map-get($neutral-palette, transparent-2);
$shadow-center-large: 0 0 40px map-get($neutral-palette, transparent-2);
$shadow-special-wysiwyg: 0 2px 4px map-get($neutral-palette, transparent-3);
$shadow-special-data-table: 0 5px 10px map-get($neutral-palette, transparent-4);
$logo-bkg-color: #ffffff;
$black-transparent-068: map-get($neutral-palette, transparent-1);
// Mapping old to new
// BASE COLORS
$foundation-100: #f9f9f9; // NEW VALUE // $foundation-color('base-1')
$foundation-200: #f5f5f5; // NEW VALUE // $foundation-color('base-2')
$gray-100: #f1f1f1;
$gray-200: #d7d7d7;
$gray-300: #bebebe;
$gray-400: #a4a4a4;
$gray-500: #717171;
$gray-600: #585858;
$gray-700: #3e3e3e;
$gray-800: #252525;
$gray-900: #262626;
$blue: #00b3e2;
$purple: #482d8c;
$pink: #e83e8c;
$green: #75c181;
$teal: #20c997;
$cyan: #17b5e3;
$indigo: #6d57a3;
$red: #eb5757;
$orange: #f8a13f;
$yellow: #f2c94c;
$black: #000;
$dark-gray: $gray-600;
$white: #fff;
$primary: $purple !default; // Primary will change when we start leveraging the new theme variables colors
$primary-light: #8d85c0; //
$primary-25: lighten($primary, 60%); //
$primary-50: lighten($primary, 55%); //
$primary-100: lighten($primary, 50%); //
$primary-200: lighten($primary, 40%); //
$primary-300: lighten($primary, 30%); //
$primary-400: lighten($primary, 20%); //
$primary-500: lighten($primary, 10%); //
$primary-600: darken($primary, 10%); //
$primary-700: darken($primary, 20%); //
$primary-800: darken($primary, 30%); //
$primary-outline-hover: $primary-25; //
$primary-outline-active: $primary-50; // "Pressed"
$secondary: $gray-600;
$success: $green; // NEW VALUE // $state-color('success')
$info: $cyan; // NEW VALUE // $state-color('info')
$warning: $orange; // NEW VALUE // $state-color('warning')
$danger: $red; // NEW VALUE // $state-color('error')
$light: $gray-100;
$dark: $gray-800;
$black-transparent-01: rgba(0, 0, 0, 0.1); // NEW VALUE // neutral-lt('transparent-2')
$black-transparent-015: rgba(0, 0, 0, 0.15);
$black-transparent-002: rgba(0, 0, 0, 0.2); // NEW VALUE // neutral-lt('transparent-3')
$black-transparent-001: rgba(0, 0, 0, 0.01);
$black-transparent-005: rgba(0, 0, 0, 0.05); // NEW VALUE // neutral-lt('transparent-1')
$black-transparent-068: rgba(1, 0, 1, 0.68);
// Text Colors
$text-color: $gray-600; // NEW VALUE // $text-color('default')
$alt-text-color: $gray-600; // NEW VALUE // $text-color('default')
$white-text: $white; // NEW VALUE // $text-color('surface')
$text-color-hover: $primary; // This will change when we start leveraging new theme variables colors
$text-color-active: $primary-600;// "Pressed" // NEW VALUE // $text-color('active')
$text-color-disabled: $gray-200; // NEW VALUE // $text-color('disabled')
$placeholder-color: $gray-400; // NEW VALUE // $text-color('placeholder')
$disabled-color: $gray-200; // NEW VALUE // $text-color('disabled')
// Table Colors
$table-header-background: $foundation-100; // NEW VALUE // $foundation-color('base-1')
// Controls
$select-item-color: $gray-700; // ???? what is this // // NEW VALUE PROBABLY // $text-color('default')
$outline-card-action-active-color: $blackcurrant; // NEW VALUE // $text-color('active')
$outline-card-action-default-color: $dark-gray; // NEW VALUE // $text-color('default')
// Icons // this section is seupposed to be icons? the variable names dont seem to match with that
$icon-navidation-background: $foundation-200; // NEW VALUE // $foundation-color('base-2')
$info-accent-color: $cyan; // NEW VALUE // $state-color('info')
$user-avatar-border-color: $white; // NEW VALUE // $state-color('info')
$current-plan-background-color: $primary; // ?? what is this //
$unpublished-badge-color: $gray-100; // unpublished badges are orange? //
$filter-item-text-color: $gray-700; // NEW VALUE PROBABLY // $text-color('default')
$filter-item-line-color: $filter-item-text-color; // NEW VALUE PROBABLY // $text-color('default')
$secondary-badge-color: $gray-600; // ?? what is this //
$activity-item-divider-color: $gray-100; // NEW VALUE // $border-color('surface-1')
$curriculum-view-selected-color: $gray-600; // ?? what is this //
$datatable-current-color: $white; // ?? what is this // NEW VALUE PROBABLY // $foundation-color('surface-1')
$billing-plan-tracker-text: $black; // NEW VALUE // $text-color('active')
$help-block-text-color: $gray-300; // NEW VALUE // $text-color('placeholder')
$modal-select-border-color: $gray-300; // NEW VALUE // $border-color('surface-2')
$select-search-text-color: $black; // NEW VALUE // $text-color('active')
$select-search-outline-color: $gray-300; // NEW VALUE // $border-color('surface-2')
$curriculum-owner-assign-color: $gray-600; // ?? what is this //
$due-date-overdue-color: $red; // NEW VALUE // $icon-color('overdue')
$due-date-color: $gray-400; // NEW VALUE // $icon-color('default')
// Froala
$froala-quick-insert-icon-background: $white; // NEW VALUE // $foundation-color('surface-1')
$froala-quick-insert-icon-hover: $foundation-100; // NEW VALUE // $foundation-color('base-1')
$froala-quick-insert-icon-color: $gray-600; // NEW VALUE // $icon-color('dark')
$froala-toolbar-default-icon-color: inherit;
$froala-toolbar-active-hover-icon-color: $gray-600; // NEW VALUE // $icon-color('dark')
$froala-toolbar-active-hover-background-color: $foundation-100; // NEW VALUE // $foundation-color('base-1')
$froala-toolbar-default-background-color: $white; // NEW VALUE // $foundation-color('surface-1')
$froala-secondary-toolbar-default-background-color: $foundation-200; // NEW VALUE // $foundation-color('base-2')
$froala-dropdown-menu-selected-background-color: $gray-100; // NEW VALUE // $foundation-color('base-1')
$froala-input-text-color: $gray-600; // NEW VALUE // $text-color('default')
// Horizonal Line
$froala-horizonal-line-color: inherit;
// Browse Images Add Button
$froala-browse-images-add-button-background-color: inherit;
$froala-browse-images-add-button-hover-color: $gray-600; // NEW VALUE // $text-color('default')
$froala-browse-images-add-button-hover-background-color: $foundation-100; // NEW VALUE // $foundation-color('base-1')
$froala-browse-images-add-button-color: $white; // NEW VALUE // $foundation-color('surface-1')
// Froala Embedly
$embed-plugin-default-background-color: $white; // NEW VALUE // $foundation-color('surface-1')
$card-input-color: $gray-600; // ?? what is this // // NEW VALUE PROBABLY // $text-color('default')
$template-preview-card-border-color: $gray-100; // NEW VALUE // $border-color('surface-1')
$badge-light-text-color: $gray-600; // NEW VALUE // $text-color('default')
$selected-card-toggle-color: $white; // NEW VALUE // $foundation-color('surface-1')
$selected-card-toggle-background: $gray-600; // ?? what is this //
$emebedly-3-dot-action-menu-background-color: $white; // NEW VALUE // $foundation-color('surface-1')
$emebedly-3-dot-action-menu-color: $gray-400; // NEW VALUE // $icon-color('default')
$emebedly-3-dot-action-menu-hover-color: $gray-600; // NEW VALUE // $icon-color('dark')
// Modals
$modal-title-color: $gray-800; // NEW VALUE // $text-color('default')
$modal-subtitle-color: $gray-600; // NEW VALUE // $text-color('default')
$modal-body-text-color: $gray-600; // NEW VALUE // $text-color('default')
$modal-body-title-color: $modal-title-color; // NEW VALUE // $text-color('default')
$modal-btn-undo-color: $gray-600; // NEW VALUE // $text-color('default')
$modal-body-label-color: $gray-800; // NEW VALUE // $text-color('active')
$modal-body-advanced-settings: $cyan; // NEW VALUE // $state-color('info')
$modal-footer-invite-later-color: $gray-600; // NEW VALUE // $text-color('default')
// Pagination
$pagination-color: $primary; // NEW COLOR // $brand-primary-color('default')
$pagination-bg: $white; // NEW VALUE // $foundation-color('surface-1')
$pagination-border-color: $gray-100; // NEW VALUE // $foundation-color('base-2')
$pagination-hover-color: darken($primary, 15%); // NEW COLOR // $brand-primary-color('hover')
$pagination-hover-bg: $gray-200; // NEW VALUE // $foundation-color('base-2')
$pagination-hover-border-color: $gray-100; // NEW VALUE // $border-color('surface-1')
$pagination-active-color: $white; // this is text? // NEW VALUE // $text-color('surface')
$pagination-active-bg: $primary; // NEW COLOR // $brand-primary-color('default')
$pagination-active-border-color: $primary; // NEW COLOR // $brand-primary-color('default')
$pagination-disabled-color: $gray-200; // this is text? // NEW VALUE // $text-color('disabled')
$pagination-disabled-bg: $gray-100; // NEW COLOR // $brand-primary-color('disabled')
$pagination-disabled-border-color: $gray-200; // NEW VALUE // $border-color('disabled')
// Curriculum card
$curriculum-card-emoji-background-color: $foundation-100; // NEW VALUE // $foundation-color('base-1')
$curriculum-card-title-color: $black; // NEW VALUE // $text-color('default')
$curriculum-card-description-color: $gray-600; // NEW VALUE // $text-color('default')
$curriculum-card-lock-icon-color: $gray-400; // NEW VALUE // $icon-color('default')
$curriculum-card-info-icon-color: $gray-400; // NEW VALUE // $icon-color('default')
$curriculum-card-clock-icon-color: $gray-400; // NEW VALUE // $icon-color('default')
$curriculum-card-info-completed-assignment-color: $gray-400; // NEW VALUE // $icon-color('default')
$curriculum-card-info-overdue-assignment-color: $red; // NEW VALUE // $icon-color('overdue')
$curriculum-card-info-ongoing-assignment-color: $green; // NEW VALUE // $icon-color('active')
$curriculum-card-info-tooltip-border-color: $gray-100; // NEW VALUE // $border-color('surface-1')
$curriculum-card-info-tooltip-background-color: $white; // NEW VALUE // $foundation-color('surface-1')
$curriculum-card-info-tooltip-text-color: $gray-400; // NEW VALUE // $text-color('placeholder')
$curriculum-card-info-tooltip-icons-color: $gray-400; // NEW VALUE // $icon-color('default')
$curriculum-card-sortable-curriculum-ghost-border-color: $black; // NEW VALUE // $foundation-color('surface-2')
// Users Curriculum card
$users-curriculum-card-info-tooltip-border-color: $gray-100; // NEW VALUE // $border-color('surface-1')
$users-curriculum-card-info-tooltip-background-color: $white; // NEW VALUE // $foundation-color('surface-1')
$users-curriculum-card-info-tooltip-box-shadow-color: $black-transparent-005; // NEW VALUE // $shadow-top('small')
$users-curriculum-card-info-tooltip-text-color: $gray-400; // NEW VALUE // $icon-color('default')
$users-curriculum-card-info-tooltip-icons-color: $gray-400; // NEW VALUE // $icon-color('default')
// My Desk Curriculum card
$my-desk-curriculum-card-lock-icon-color: $gray-400; // NEW VALUE // $icon-color('default')
$my-desk-curriculum-card-info-icon-color: $gray-400; // NEW VALUE // $icon-color('default')
$my-desk-curriculum-card-info-tooltip-border-color: $gray-100; // NEW VALUE // $border-color('surface-1')
$my-desk-curriculum-card-info-tooltip-background-color: $white; // NEW VALUE // $foundation-color('surface-1')
$my-desk-curriculum-card-info-tooltip-box-shadow-color: $black-transparent-005; // NEW VALUE // $shadow-top('small')
$my-desk-curriculum-card-info-tooltip-text-color: $gray-400; // NEW VALUE // $text-color('default')
$my-desk-curriculum-card-info-tooltip-icons-color: $gray-400; // NEW VALUE // $icon-color('default')
// Edit Curriculum card
$edit-curriculum-card-emoji-hover-background-color: $gray-200; // NEW VALUE // $foundation-color('base-2')
$edit-curriculum-card-emoji-border-color: $transparent; // ? //
$edit-curriculum-card-emoji-default-color: $gray-400; // NEW VALUE // $icon-color('default')
$edit-curriculum-card-heading-editable-title-color: $gray-800; // is this when you click to edit text? // NEW VALUE // $text-color('active')
$edit-curriculum-card-info-editable-text-color: $gray-600; // is this when you click to edit text? // NEW VALUE // $text-color('active')
$edit-curriculum-card-footer-time-estimate-icon-color: $silver-chalice; // NEW VALUE // $icon-color('default')
$edit-curriculum-card-footer-time-estimate-text-color: $silver-chalice; // NEW VALUE // $icon-color('default')
$edit-curriculum-card-content-more-roles-color: $silver-chalice; // NEW VALUE // $text-color('placeholder')
$edit-curriculum-card-content-link-text-color: $suva-grey; // NEW VALUE // $icon-color('default')
$edit-curriculum-card-element-outline-time-estimate-color: $gray-300; // NEW VALUE // $text-color('placeholder')
$edit-curriculum-card-element-cancel-icon-color: $gray-400; // NEW VALUE // $icon-color('default')
$edit-curriculum-card-sortable-item-ghost-color: $transparent; // ? //
$edit-curriculum-card-sortable-item-ghost-border-color: $black; // NEW VALUE // $foundation-color('surface-2')
$edit-curriculum-card-locked-icons-color: $gray-400; // NEW VALUE // $icon-color('default')
// Show Curriculum card
$show-curriculum-card-content-due-date-color: $gray-400; // text? // NEW VALUE // $text-color('placeholder')
$show-curriculum-card-element-outline-icon-color: $gray-400; // NEW VALUE // $icon-color('default')
$show-curriculum-card-element-outline-brand-icon-color: $purple; // ? //
$show-curriculum-card-element-outline-utilities-color: $gray-400; // ? //
$show-curriculum-card-body-time-estimate-icon-color: $silver-chalice; // NEW VALUE // $icon-color('default')
$show-curriculum-card-body-time-estimate-text-color: $silver-chalice; // NEW VALUE // $text-color('default')
// Scrollbar
$scrollbar-color: $gray-200; // NEW VALUE // $border-color('surface-2')
// Old Welcome Wizard
$old-welcome-wizard-title-color: $bunker; // NEW VALUE // $text-color('default')
$old-welcome-wizard-subtitle-color: $bunker; // NEW VALUE // $text-color('default')
// Welcome Wizard
$welcome-wizard-title-color: $gray-800; // NEW VALUE // $text-color('default')
$welcome-wizard-subtitle-color: $gray-600; // NEW VALUE // $text-color('default')
$welcome-wizard-action-btn-color: $white; // NEW VALUE // $text-color('surface')
// Empty State
$empty-state-title-color: $gray-800; // NEW VALUE // $text-color('default')
$empty-state-subtitle-color: $gray-800; // NEW VALUE // $text-color('default')
// Welcome Wizard Templates page
$template-card-gray-200-border-color: $gray-200; // NEW VALUE // $border-color('surface-1')
$template-card-gray-400-border-color: $gray-400; // NEW VALUE // $border-color('surface-2')
$template-card-purple-border-color: $primary; // NEW VALUE // $theme-border-color('default')
// Manage Users Modal
$manage-users-tab-underline-color: $gray-400; // NEW VALUE // $border-color('default')
$manage-users-tab-active-underline-color: $gray-700; // NEW VALUE // $border-color('hover')
$content-access-dropdown-menu-border-color: $gray-100; // NEW VALUE // $border-color('surface-2')
// Welcome Wizard Old Select Goals Step
$old-select-goals-wizard-content-card-checked-box-shadow-color: $purple;
$old-select-goals-wizard-content-card-text-before-color: $purple;
$old-select-goals-wizard-content-card-text-color: $bunker;
$old-select-goals-wizard-content-card-box-shadow-color: $black-transparent-002;
$old-select-goals-wizard-content-card-border-color: $silver;
$old-select-goals-wizard-content-card-check-color: $purple;
// Welcome Wizard Select Goals Step
$select-goals-wizard-content-card-border-color: $gray-100;
$select-goals-wizard-content-card-background-color: $white;
$select-goals-wizard-content-card-text-title-color: $black;
$select-goals-wizard-content-card-check-color: $purple;
$select-goals-wizard-content-card-hover-border-color: $primary;
$select-goals-wizard-content-card-hover-card-text-description-color: $gray-600;
$select-goals-wizard-content-card-checked-border-color: $primary;
$select-goals-wizard-content-card-box-shadow-color: $black-transparent-005;
$select-goals-wizard-action-wrapper-background-color: $white;
// Welcome Wizard User setup page
$user-setup-purple-color: $primary;
$cropit-preview-background-color: $white;
$image-hover-overlay-color: $gray-800;
$image-hover-overlay-background-color: rgba(216, 216, 216, 0.7);
$default-placeholder-color: $nobel-grey;
$tooltip-icon-color: $gray-400;
// Welcome Wizard Old Brand Account Step
$old-brand-account-brand-options-logo-title-color: $medium-spring-green;
$old-brand-account-brand-options-logo-subtitle-color: $medium-spring-green;
$old-brand-account-brand-options-logo-cropit-preview-border-color: $medium-spring-green;
$old-brand-account-brand-options-logo-cropit-image-background-color: $white;
$old-brand-account-brand-options-logo-cropit-preview-background-color: $white;
$old-brand-account-brand-options-logo-controls-background-color: $white;
$old-brand-account-brand-options-logo-controls-rotation-btn-color: $grey;
$old-brand-account-brand-options-logo-controls-border-color: $white-smoke;
$old-brand-account-brand-options-color-section-label-color: $bunker;
$old-brand-account-brand-options-color-section-picker-inner-background-color: $purple;
$old-brand-account-brand-options-color-section-picker-inner-border-color: $alto;
$old-brand-account-brand-options-color-section-subtitle-color: $medium-spring-green;
$old-brand-account-brand-preview-border-color: $silver;
$old-brand-account-brand-preview-background-color: $solitude;
$old-brand-account-brand-preview-navbar-background-color: $white;
$old-brand-account-brand-preview-navbar-actions-avatar-background-color: $silver;
$old-brand-account-brand-preview-navbar-actions-icon-color: $silver;
$old-brand-account-brand-preview-sidebar-background-color: $black-transparent-068;
$old-brand-account-brand-preview-sidebar-option-background-color: $transparent;
$old-brand-account-brand-preview-sidebar-option-bar-background-color: $medium-spring-green;
$old-brand-account-brand-preview-sidebar-option-selected-bar-background-color: $gainsboro;
$old-brand-account-brand-preview-sidebar-option-selected-background-color: $charcoal;
$old-brand-account-brand-preview-main-content-filters-main-bar-background-color: $black;
$old-brand-account-brand-preview-main-content-filters-small-bar-background-color: $silver;
$old-brand-account-brand-preview-main-content-button-border-color: $alto;
$old-brand-account-brand-preview-main-content-button-background-color: $white;
$old-brand-account-brand-preview-main-content-button-bar-background-color: $silver;
$old-brand-account-brand-preview-main-content-card-box-shadow-color: $black-transparent-001;
$old-brand-account-brand-preview-main-content-upper-card-box-shadow-color: $black-transparent-001;
$old-brand-account-brand-preview-main-content-upper-card-main-bar-color: $black;
$old-brand-account-brand-preview-main-content-upper-card-background-color: $white;
$old-brand-account-brand-preview-main-content-card-row-background-color: $white;
$old-brand-account-brand-preview-main-content-card-row-box-shadow-color: $black-transparent-001;
$old-brand-account-brand-preview-main-content-card-row-title-background-color: $black;
$old-brand-account-brand-preview-main-content-card-row-description-background-color: $silver;
$old-brand-account-brand-preview-main-content-card-row-content-bar-2-background-color: $black;
$old-brand-account-brand-preview-main-content-card-row-content-bar-3-background-color: $silver;
// Welcome Wizard Brand Account Step
$brand-account-brand-options-logo-title-color: $gray-600;
$brand-account-brand-options-logo-subtitle-color: $gray-400;
$brand-account-brand-options-logo-cropit-image-background-color: $white;
$brand-account-brand-options-logo-cropit-preview-border-color: $medium-spring-green;
$brand-account-brand-options-logo-cropit-preview-background-color: $white;
$brand-account-brand-options-logo-controls-background-color: $white;
$brand-account-brand-options-logo-controls-rotation-btn-color: $grey;
$brand-account-brand-options-logo-controls-border-color: $white-smoke;
$brand-account-brand-options-color-section-label-color: $bunker;
$brand-account-brand-options-color-section-picker-inner-background-color: $purple;
$brand-account-brand-options-color-section-picker-inner-border-color: $gainsboro;
$brand-account-brand-options-color-section-subtitle-color: $medium-spring-green;
$brand-account-brand-preview-background-color: $white;
$brand-account-brand-preview-border-color: $gray-100;
$brand-account-brand-preview-box-shadow-color: $black-transparent-005;
$brand-account-brand-preview-sidebar-background-color: $white;
$brand-account-brand-preview-sidebar-search-box-background-color: $white;
$brand-account-brand-preview-sidebar-search-box-border-color: $gainsboro;
$brand-account-brand-preview-sidebar-search-box-field-background-color: $silver;
$brand-account-brand-preview-sidebar-option-background-color: $transparent;
$brand-account-brand-preview-sidebar-option-icon-background-color: $silver;
$brand-account-brand-preview-sidebar-option-bar-background-color: $silver;
$brand-account-brand-preview-sidebar-footer-progress-bar-icon-background-color: $silver;
$brand-account-brand-preview-sidebar-footer-options-bar-icon-background-color: $silver;
$brand-account-brand-preview-sidebar-footer-options-bar-avatar-background-color: $silver;
$brand-account-brand-preview-sidebar-footer-info-bar-icon-background-color: $silver;
$brand-account-brand-preview-sidebar-footer-info-bar-bar-background-color: $orange;
$brand-account-brand-preview-main-content-background-color: $white;
$brand-account-brand-preview-main-content-filters-main-bar-background-color: $gray-600;
$brand-account-brand-preview-main-content-filters-main-tabs-small-bar-background-color: $silver;
$brand-account-brand-preview-main-content-filters-main-tabs-active-background-color: $gray-600;
$brand-account-brand-preview-main-content-upper-card-background-color: $white;
$brand-account-brand-preview-main-content-upper-card-box-shadow-color: $black-transparent-005;
$brand-account-brand-preview-main-content-upper-card-main-bar-title-color: $gray-600;
$brand-account-brand-preview-main-content-card-box-shadow-color: $black-transparent-005;
$brand-account-brand-preview-main-content-card-box-background-color: $white;
$brand-account-brand-preview-main-content-card-box-title-text-background-color: $gray-600;
$brand-account-brand-preview-main-content-card-box-title-star-icon-color: $silver;
$brand-account-brand-preview-main-content-card-box-description-bar-color: $silver;
$brand-account-brand-preview-main-content-card-box-content-bar-3-color: $gray-600;
// Welcome Wizard Old Choose Your Setup
$old-choose-your-setup-card-background-color: $white;
$old-choose-your-setup-card-border-color: $silver;
$old-choose-your-setup-card-box-shadow-color: $black-transparent-002;
$old-choose-your-setup-card-hover-box-shadow-from-color: $black-transparent-015;
$old-choose-your-setup-card-hover-box-shadow-to-color: $black-transparent-01;
$old-choose-your-setup-card-text-color: $bunker;
// Welcome Wizard Choose Your Setup
$choose-your-setup-card-background-color: $white;
$choose-your-setup-card-border-color: $gray-100;
$choose-your-setup-card-box-shadow-color: $black-transparent-005;
$choose-your-setup-card-hover-box-shadow-from-color: $black-transparent-015;
$choose-your-setup-card-hover-box-shadow-to-color: $black-transparent-01;
$choose-your-setup-card-text-color: $bunker;
$choose-your-setup-content-subtext-color: $bunker;
$choose-your-setup-modal-header-title-color: $gray-800;
$choose-your-setup-modal-header-subtitle-color: $gray-600;
$choose-your-setup-modal-footer-btn-color: $white;
$choose-your-setup-modal-footer-btn-secondary-border-color: $purple;
// Welcome Wizard Old Content Creator Step
$old-content-creator-modal-header-title-color: $gray-800;
$old-content-creator-modal-header-sub-text-color: $gray-600;
$old-content-creator-modal-body-ability-icon-color: $cyan;
$old-content-creator-modal-body-info-text-color: $cyan;
// Welcome Wizard Content Creator Step
$content-creator-wizard-content-error-message-color: $red;
$content-creator-modal-header-title-color: $gray-800;
$content-creator-modal-header-sub-text-color: $gray-600;
$content-creator-modal-body-ability-image-color: $gray-600;
$content-creator-modal-body-ability-text-color: $gray-600;
$content-creator-modal-body-info-text-icon-color: $cyan;
$content-creator-modal-body-info-text-color: $cyan;
$content-creator-content-subtext-color: $bunker;
// Select Content Types Step
$content-type-card-box-shadow-color: $black-transparent-005;
$content-type-card-border-color: $silver;
$content-type-card-text-color: $bunker;
$content-type-card-check-color: $purple;
$content-type-card-tagsinput-border-color: $purple;
$content-type-card-tagsinput-background-color: $purple;
$content-type-card-tagsinput-text-color: $white;
// Welcome Wizard Delegated Setup User
$setup-delegated-user-background-color: $white;
$setup-delegated-user-image-heading-mobile-title-color: $black;
$setup-delegated-user-image-heading-title-color: $bunker;
$setup-delegated-user-form-label-color: $gray-800;
$setup-delegated-user-form-checkbox-label-color: $gray-600;
// Trial Ended Banner
$trial-ended-background-color: $gray-200; // NEW VALUE // $foundation-color('base-2')
$trial-ended-text-color: $gray-600; // NEW VALUE // $text-color('default')
$trial-ended-link-color: $cyan; // NEW VALUE // $text-color('active-color')
// Select2 Dropdown
$add-user-icon-background-color: $white; // NEW VALUE // $foundation-color('surface-1')
$add-user-icon-color: $gray-200; // NEW VALUE // $icon-color('default')
$add-user-icon-border-color: $gray-200; // NEW VALUE // $border-color('surface-2')