mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2024-12-04 04:01:26 +00:00
33 lines
694 B
SCSS
33 lines
694 B
SCSS
// Ref: https://github.com/nuxt-community/vuetify-module#customvariables
|
|
//
|
|
// The variables you want to modify
|
|
// $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;
|
|
$body-font-family: $heading-font-family;
|
|
|
|
$font-size-root: 14px;
|
|
$input-font-size: 14px;
|
|
$btn-font-weight: 500;
|
|
|
|
$material-light: (
|
|
'background': #f2f2f2,
|
|
'chip': '#e4e4e4',
|
|
'menus': '#bbb'
|
|
);
|
|
|
|
$material-dark: (
|
|
'background': #121721,
|
|
'navigation-drawer': #1c2331,
|
|
'app-bar': #1c2331,
|
|
'dividers': #233543,
|
|
'cards': #1c2331,
|
|
'chips': #2b4355,
|
|
'menus': #252e41,
|
|
'text': (
|
|
'primary': #edf2f7
|
|
)
|
|
);
|