2022-01-19 17:24:11 +01:00
|
|
|
@use '@angular/material' as mat;
|
|
|
|
|
2024-07-02 19:19:05 +02:00
|
|
|
@include mat.core();
|
2022-01-19 17:24:11 +01:00
|
|
|
|
2024-05-24 12:02:35 +02:00
|
|
|
// Define the theme
|
2024-07-02 19:19:05 +02:00
|
|
|
$openvidu-theme: mat.define-theme();
|
2022-01-19 17:24:11 +01:00
|
|
|
|
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-05-24 12:02:35 +02:00
|
|
|
|
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-01-19 17:24:11 +01:00
|
|
|
|
2022-03-10 15:41:51 +01:00
|
|
|
// Custom openvidu-components styles
|
2022-01-19 17:24:11 +01:00
|
|
|
:root {
|
2024-05-24 12:02:35 +02:00
|
|
|
--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;
|
2022-01-19 17:24:11 +01:00
|
|
|
}
|