Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/replay/shared/interfaces/ITheme.ts
2650 views
1
export default interface ITheme {
2
titlebarBackgroundColor: string;
3
4
addressBarBackgroundColor: string;
5
addressBarTextColor: string;
6
7
toolbarBackgroundColor: string;
8
toolbarBottomLineBackgroundColor: string;
9
toolbarLightForeground: boolean;
10
toolbarSeparatorColor: string;
11
12
controlBackgroundColor: string;
13
controlHoverBackgroundColor: string;
14
controlValueColor: string;
15
controlLightIcon: boolean;
16
switchBackgroundColor: string;
17
18
dialogSeparatorColor: string;
19
dialogBackgroundColor: string;
20
dialogTextColor: string;
21
dialogLightForeground: boolean;
22
23
pagesBackgroundColor: string;
24
pagesLightForeground: boolean;
25
pagesTextColor: string;
26
pagesNavigationDrawerBackgroundColor: string;
27
28
dropdownSeparatorColor: string;
29
dropdownBackgroundColor: string;
30
dropdownBackgroundColorTranslucent: string;
31
32
backgroundColor: string;
33
accentColor: string;
34
35
dark?: boolean;
36
}
37
38