Skip to content

Commit

Permalink
Updates theme tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
akolson committed Nov 27, 2024
1 parent cec1954 commit e02cc3e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<VListTileAction class="handle-col" :aria-hidden="!hover" @click.stop>
<transition name="fade">
<VBtn :disabled="copying" flat icon>
<Icon :color="$themePalette.grey.v_600" icon="dragVertical" />
<Icon :color="$themePalette.grey.v_700" icon="dragVertical" />
</VBtn>
</transition>
</VListTileAction>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<span v-else-if="error" class="mx-2">
<VTooltip bottom lazy>
<template #activator="{ on }">
<VIconWrapper :color="$themePalette.red.v_1100" v-on="on">
<VIconWrapper :color="$themePalette.red.v_600" v-on="on">
error
</VIconWrapper>
</template>
Expand All @@ -19,7 +19,7 @@
<span v-else-if="warning" class="mx-2">
<VTooltip bottom lazy>
<template #activator="{ on }">
<VIconWrapper :color="$themePalette.yellow.v_1100" v-on="on">
<VIconWrapper :color="$themePalette.yellow.v_600" v-on="on">
warning
</VIconWrapper>
</template>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
wrap="soft"
aria-hidden="true"
:style="[dynamicHeightStyle, {
backgroundColor: $themePalette.grey.v_50,
border: $themePalette.grey.v_100,
backgroundColor: $themePalette.grey.v_100,
border: $themePalette.grey.v_200,
}]"
>
</textarea>
Expand Down
20 changes: 10 additions & 10 deletions contentcuration/contentcuration/frontend/shared/vuetify/theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ export default function theme() {
const tokens = themeTokens();
return Object.assign(
{
loading: palette.black,
primaryBackground: brand.primary.v_200,
backgroundColor: palette.grey.v_50,
greyBackground: palette.grey.v_200,
loading: palette.grey.v_900,
primaryBackground: brand.primary.v_100,
backgroundColor: palette.grey.v_100,
greyBackground: palette.grey.v_300,
greyBorder: palette.grey.v_400,
grey: palette.grey.v_600,
grey: palette.grey.v_700,
darkGrey: palette.grey.v_800,
greenSuccess: tokens.success,
topic: palette.grey.v_400,
Expand All @@ -23,11 +23,11 @@ export default function theme() {
html5: tokens.explore,
zim: tokens.explore,
slideshow: tokens.read,
channelHighlightDefault: palette.grey.v_200,
draggableDropZone: palette.grey.v_100,
draggableDropOverlay: brand.primary.v_400,
greenHighlightBackground: brand.secondary.v_200,
roleVisibilityCoach: palette.lightblue.v_1100,
channelHighlightDefault: palette.grey.v_300,
draggableDropZone: palette.grey.v_200,
draggableDropOverlay: brand.primary.v_200,
greenHighlightBackground: brand.secondary.v_100,
roleVisibilityCoach: palette.lightblue.v_600,
},
tokens
);
Expand Down

0 comments on commit e02cc3e

Please sign in to comment.