openvidu/openvidu-components-angular/src/styles.scss

48 lines
1.1 KiB
SCSS
Raw Normal View History

@use '@angular/material' as mat;
2024-07-02 19:19:05 +02:00
@include mat.core();
// Define the theme
2024-07-02 19:19:05 +02:00
$openvidu-theme: mat.define-theme();
2024-07-02 19:19:05 +02:00
html {
// Emit theme-dependent styles for common features used across multiple components.
@include mat.core-theme($openvidu-theme);
// @include mat.button-theme($theme);
@include mat.all-component-bases($openvidu-theme);
@include mat.all-component-colors($openvidu-theme);
@include mat.all-component-typographies($openvidu-theme);
@include mat.all-component-densities($openvidu-theme);
}
2024-07-02 19:19:05 +02:00
html,
body {
height: 100%;
overflow: hidden;
}
body {
margin: 0;
font-family: 'Roboto', 'RobotoDraft', Helvetica, Arial, sans-serif;
}
2022-03-10 15:41:51 +01:00
// Custom openvidu-components styles
:root {
--ov-primary-color: #303030;
--ov-secondary-color: #3e3f3f;
--ov-tertiary-color: #598eff;
--ov-warn-color: #eb5144;
--ov-accent-color: #ffae35;
--ov-light-color: #e6e6e6;
--ov-logo-background-color: #3a3d3d;
--ov-text-color: #ffffff;
--ov-panel-text-color: #1d1d1d;
--ov-panel-background: #ffffff;
--ov-buttons-radius: 50%;
--ov-leave-button-radius: 10px;
--ov-video-radius: 5px;
--ov-panel-radius: 5px;
}