-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcork-style-properties.html
More file actions
47 lines (39 loc) · 1.42 KB
/
cork-style-properties.html
File metadata and controls
47 lines (39 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<custom-style>
<style>
html {
--default-primary-color : rgb(145, 32, 70);
--primary-color : var(--default-primary-color);
--dark-background-color : rgb(51, 41, 38);
--medium-background-color : rgb(213, 213, 203);
--light-background-color : rgb(242, 243, 238);
--disabled-color : var(--light-background-color);
--input-border-color : #AFA6A1;
--accent-color : rgb(142, 106, 73);
--secondary-accent-color : #3E9B96;
--text-primary-color : rgb(51, 41, 38);
--primary-text-color : var(--text-primary-color);
--secondary-text-color : #757575;
--disabled-text-color : var(--input-border-color);
--red-wine : #CC1D32;
--rose-wine : #ED9898;
--white-wine : #F7D797;
--font-size : 14px;
--font-weight : 200;
}
body, html {
@apply --paper-font-common-base;
font-size : var(--font-size);
font-weight : var(--font-weight);
margin : 0;
padding : 0;
height : 100%;
background-color : rgb(242, 243, 238);
color : rgb(51, 41, 38);
}
input, textarea, select, button {
@apply --paper-font-common-base;
font-size : var(--font-size);
font-weight : var(--font-weight);
}
</style>
</custom-style>