xref: /aosp_15_r20/development/tools/motion/motion_test_watcher_app/src/styles.scss (revision 90c8c64db3049935a07c6143d7fd006e26f8ecca)
1@use "@angular/material" as mat;
2@use "./app/test-overview/test-overview-theme" as test-overview;
3@use "./app/motion-golden/theme" as golden;
4@use "./app/timeline-view/graph/graph-theme" as graph;
5
6$theme: mat.define-theme(
7  (
8    color: (
9      theme-type: light,
10      primary: mat.$rose-palette,
11      tertiary: mat.$red-palette,
12    ),
13  )
14);
15
16@include mat.core();
17
18html {
19  @include mat.all-component-themes($theme);
20  @include test-overview.theme($theme);
21  @include golden.theme($theme);
22  @include graph.theme($theme);
23}
24
25html,
26body {
27  height: 100%;
28}
29body {
30  margin: 0;
31}
32