forked from nrentz-ts/css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.css
72 lines (58 loc) · 2.46 KB
/
variables.css
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*! ThoughtSpot 2022-09-17
* http://www.thoughtspot.com/
* Copyright (c) 2022 ThoughtSpot
*/
@font-face {
font-family: 'Italiana';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://fonts.gstatic.com/s/italiana/v16/QldNNTtLsx4E__B0XQmWaXx0xKVu.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
/******** App ********/
/*Currently undefined */
--ts-var-root-color: initial;
/*App background, app-wide font, app-wide text transform */
--ts-var-root-background: initial;
--ts-var-root-font-family: initial;
--ts-var-root-text-transform: initial;
/******** Nav bar ********/
/*Nav bar font color, background color*/
--ts-var-nav-color: white;
--ts-var-nav-background: crimson;
/******** Buttons ********/
/* App wide button design for main buttons*/
--ts-var-button-border-radius: 5px;
/* App wide button design for smaller buttons (ex: share, favorite, etc.)*/
--ts-var-button--icon-border-radius: 5px;
/* Primary buttons: For instance the Go button on the Search bar, when the search bar is clicked on */
--ts-var-button--primary-color: white;
--ts-var-button--primary-background: crimson;
--ts-var-button--primary--hover-background: #C70039;
--ts-var-button--primary--font-family: initial;
/* Secondary buttons: For instance most of the buttons on a Liveboard */
--ts-var-button--secondary-color: initial;
--ts-var-button--secondary-background: initial;
--ts-var-button--secondary--hover-background: initial;
--ts-var-button--secondary--font-family: initial;
/* Tertiary buttons: Example the forward / back buttons */
--ts-var-button--tertiary-color: initial;
--ts-var-button--tertiary-background: initial;
--ts-var-button--tertiary--hover-background: initial;
/******** Visualizations ********/
/* Viz title customizations*/
--ts-var-viz-title-color: charcoal;
--ts-var-viz-title-font-family: initial;
--ts-var-viz-title-text-transform: italic;
/* Viz subtitle customizations*/
--ts-var-viz-description-color: #A4A4A3;
--ts-var-viz-description-font-family: initial;
--ts-var-viz-description-text-transform: initial;
/* Viz area customizations*/
--ts-var-viz-border-radius: 15px;
--ts-var-viz-box-shadow: 1px 2px 5px #888888;
--ts-var-viz-background: initial;
}
/*# sourceMappingURL=custom_variables.css.map */