Skip to content

Commit

Permalink
feat: update color variables
Browse files Browse the repository at this point in the history
  • Loading branch information
caro3801 committed Jul 1, 2024
1 parent 2dea68d commit 7d9bc4f
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 7 deletions.
18 changes: 18 additions & 0 deletions components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ declare module 'vue' {
AppNav: typeof import('./src/components/AppNav.vue')['default']
AppSidebar: typeof import('./src/components/AppSidebar.vue')['default']
AudioViewer: typeof import('./src/components/document/viewers/AudioViewer.vue')['default']
BAlert: typeof import('bootstrap-vue-next')['BAlert']
BatchDownloadActions: typeof import('./src/components/BatchDownloadActions.vue')['default']
BatchSearchActions: typeof import('./src/components/BatchSearchActions.vue')['default']
BatchSearchClearFilters: typeof import('./src/components/BatchSearchClearFilters.vue')['default']
Expand All @@ -27,17 +28,34 @@ declare module 'vue' {
BatchSearchTable: typeof import('./src/components/BatchSearchTable.vue')['default']
BBadge: typeof import('bootstrap-vue-next')['BBadge']
BButton: typeof import('bootstrap-vue-next')['BButton']
BButtonGroup: typeof import('bootstrap-vue-next')['BButtonGroup']
BCol: typeof import('bootstrap-vue-next')['BCol']
BCollapse: typeof import('bootstrap-vue-next')['BCollapse']
BDropdown: typeof import('bootstrap-vue-next')['BDropdown']
BDropdownDivider: typeof import('bootstrap-vue-next')['BDropdownDivider']
BDropdownHeader: typeof import('bootstrap-vue-next')['BDropdownHeader']
BDropdownItem: typeof import('bootstrap-vue-next')['BDropdownItem']
BDropdownItemButton: typeof import('bootstrap-vue-next')['BDropdownItemButton']
BForm: typeof import('bootstrap-vue-next')['BForm']
BFormCheckbox: typeof import('bootstrap-vue-next')['BFormCheckbox']
BFormCheckboxGroup: typeof import('bootstrap-vue-next')['BFormCheckboxGroup']
BFormGroup: typeof import('bootstrap-vue-next')['BFormGroup']
BFormInput: typeof import('bootstrap-vue-next')['BFormInput']
BFormRadio: typeof import('bootstrap-vue-next')['BFormRadio']
BFormSelect: typeof import('bootstrap-vue-next')['BFormSelect']
BInputGroup: typeof import('bootstrap-vue-next')['BInputGroup']
BInputGroupText: typeof import('bootstrap-vue-next')['BInputGroupText']
BLink: typeof import('bootstrap-vue-next')['BLink']
BListGroup: typeof import('bootstrap-vue-next')['BListGroup']
BListGroupItem: typeof import('bootstrap-vue-next')['BListGroupItem']
BModal: typeof import('bootstrap-vue-next')['BModal']
BOverlay: typeof import('bootstrap-vue-next')['BOverlay']
BPopover: typeof import('bootstrap-vue-next')['BPopover']
BRow: typeof import('bootstrap-vue-next')['BRow']
BTab: typeof import('bootstrap-vue-next')['BTab']
BTable: typeof import('bootstrap-vue-next')['BTable']
BTabs: typeof import('bootstrap-vue-next')['BTabs']
BTooltip: typeof import('bootstrap-vue-next')['BTooltip']
ColumnChartPicker: typeof import('./src/components/ColumnChartPicker.vue')['default']
ColumnFilter: typeof import('./src/components/ColumnFilter.vue')['default']
ColumnFilterBadge: typeof import('./src/components/ColumnFilterBadge.vue')['default']
Expand Down
13 changes: 6 additions & 7 deletions src/utils/settings.scss
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
$prefix: bs-;

$saddle-red: #FA4070;
$primary: #193D87;
$primary: #112A5C;
$secondary: #FA4070;
$tertiary: #FFBF57;
$danger: #dc3545;

$warning: #FFBF57;
$success: #00bb84;
$info: #45C4FF;
$light: #F0F0F0;
$lighter: #F4F4F6;
$dark: #292930;
$light: #C7C7C7;
$lighter: #F3F3F3;
$dark: #212529;
$darker: darken($dark, 20);
$darkest: darken($dark, 30);

Expand All @@ -27,7 +26,7 @@ $card-cap-bg: rgba(var(--#{$prefix}body-color-rgb), .03);
$translation-bg: #fcf8e3;

$theme-colors: (
icij: #852308,
icij: #F00,
primary: $primary,
secondary: $secondary,
tertiary: $tertiary,
Expand All @@ -43,7 +42,7 @@ $theme-colors: (
mark: #fff5bd,
category-ban: $secondary,
category-person: #ff6699,
category-organization: darken($warning, 5),
category-organization: #FFB53E,
category-location: #4cd9aa,
category-email: #33beff
);
Expand Down

0 comments on commit 7d9bc4f

Please sign in to comment.