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-11-05 12:37:34 +01:00
|
|
|
--ov-background-color: #1f2020;
|
|
|
|
--ov-surface-color: #ffffff;
|
2024-05-24 12:02:35 +02:00
|
|
|
|
2024-11-05 12:37:34 +01:00
|
|
|
--ov-primary-action-color: #273235;
|
|
|
|
--ov-secondary-action-color: #f1f1f1;
|
|
|
|
--ov-accent-action-color: #0089ab;
|
2024-05-24 12:02:35 +02:00
|
|
|
|
2024-11-05 12:37:34 +01:00
|
|
|
--ov-error-color: #eb5144;
|
|
|
|
--ov-warn-color: #ffba53;
|
|
|
|
|
|
|
|
--ov-text-primary-color: #ffffff;
|
|
|
|
--ov-text-surface-color: #1d1d1d;
|
2024-05-24 12:02:35 +02:00
|
|
|
|
|
|
|
--ov-buttons-radius: 50%;
|
|
|
|
--ov-leave-button-radius: 10px;
|
|
|
|
--ov-video-radius: 5px;
|
2024-11-05 12:37:34 +01:00
|
|
|
--ov-surface-radius: 5px;
|
2022-01-19 17:24:11 +01:00
|
|
|
}
|