44 lines
1.1 KiB
SCSS
44 lines
1.1 KiB
SCSS
/*
|
|
Copyright 2021 New Vector Ltd.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
// TODO: Match the user's theme: https://github.com/vector-im/element-web/issues/12794
|
|
|
|
@font-face {
|
|
font-family: 'Nunito';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src: url('~matrix-react-sdk/res/fonts/Nunito/Nunito-Regular.ttf') format('truetype');
|
|
}
|
|
|
|
$dark-fg: #edf3ff;
|
|
$dark-bg: #363c43;
|
|
$light-fg: #2e2f32;
|
|
$light-bg: #fff;
|
|
body {
|
|
font-family: Nunito, Arial, Helvetica, sans-serif;
|
|
background-color: $dark-bg;
|
|
color: $dark-fg;
|
|
}
|
|
|
|
body.theme-light {
|
|
background-color: $light-bg;
|
|
color: $light-fg;
|
|
}
|
|
|
|
body, html {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|