feat(light theme): add some light theme colors

This commit is contained in:
Cameron Clark 2021-02-15 19:08:42 +00:00
parent 27f84cab5a
commit 06fcfed5e7
2 changed files with 14 additions and 10 deletions

View File

@ -4,25 +4,29 @@
// $font-size-root: 20px;
// Globals
$heading-font-family: 'Noto Sans',
'Noto Sans HK',
'Noto Sans JP',
'Noto Sans KR',
'Noto Sans SC',
sans-serif !default;
$heading-font-family: 'Noto Sans', 'Noto Sans HK', 'Noto Sans JP',
'Noto Sans KR', 'Noto Sans SC', sans-serif !default;
$body-font-family: $heading-font-family;
$font-size-root: 14px;
$input-font-size: 14px;
$btn-font-weight: 500;
$material-light: ('background': #f2f2f2);
$material-light: (
'background': #f2f2f2,
'chip': '#e4e4e4',
'menus': '#bbb'
);
$material-dark: ('background': #121721,
$material-dark: (
'background': #121721,
'navigation-drawer': #1c2331,
'app-bar': #1c2331,
'dividers': #233543,
'cards': #1c2331,
'chips': #2b4355,
'menus': #252e41,
'text': ('primary': #edf2f7));
'text': (
'primary': #edf2f7
)
);

View File

@ -1,5 +1,5 @@
<template>
<v-avatar color="primary darken-3" :size="size">
<v-avatar color="primary" :size="size">
<v-img :src="userImage" :alt="user.Name" class="userImage">
<template #placeholder>
<v-icon :size="size - 32" dark>mdi-account</v-icon>