@planningcenter/tapestry 3.0.0-rc.7 → 3.0.0-rc.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/page-header/index.js +1 -1
- package/dist/components/sidenav/index.js +1 -1
- package/dist/reactRender.css +223 -223
- package/dist/reactRender.css.map +1 -1
- package/dist/reactRenderLegacy.css +223 -223
- package/dist/reactRenderLegacy.css.map +1 -1
- package/dist/tapestry-wc/dist/components/{p-D1rzJeWl.js → p-B8ftfzse.js} +3 -3
- package/dist/tapestry-wc/dist/components/p-B8ftfzse.js.map +1 -0
- package/dist/tapestry-wc/dist/components/{p-DmP02I4b.js → p-CCBOjvhG.js} +3 -3
- package/dist/tapestry-wc/dist/components/p-CCBOjvhG.js.map +1 -0
- package/dist/tapestry-wc/dist/components/{p-D0G2xpOq.js → p-D1od_m1m.js} +3 -3
- package/dist/tapestry-wc/dist/components/p-D1od_m1m.js.map +1 -0
- package/dist/tapestry-wc/dist/components/{p-74Cc2nEh.js → p-DZ-15cqc.js} +2 -2
- package/dist/tapestry-wc/dist/components/p-DZ-15cqc.js.map +1 -0
- package/dist/tapestry-wc/dist/components/{p-5-Cvrlgk.js → p-uw_SPrG0.js} +2 -2
- package/dist/tapestry-wc/dist/components/p-uw_SPrG0.js.map +1 -0
- package/dist/tapestry-wc/dist/components/tds-page-header-nav.js +2 -2
- package/dist/tapestry-wc/dist/components/tds-page-header-nav.js.map +1 -1
- package/dist/tapestry-wc/dist/components/tds-page-header.js +3 -3
- package/dist/tapestry-wc/dist/components/tds-page-header.js.map +1 -1
- package/dist/tapestry-wc/dist/components/tds-sidenav-item.js +3 -3
- package/dist/tapestry-wc/dist/components/tds-sidenav-item.js.map +1 -1
- package/dist/tapestry-wc/dist/components/tds-sidenav-responsive-header.js +2 -2
- package/dist/tapestry-wc/dist/components/tds-sidenav-responsive-header.js.map +1 -1
- package/dist/tapestry-wc/dist/components/tds-sidenav-section.js +3 -3
- package/dist/tapestry-wc/dist/components/tds-sidenav-section.js.map +1 -1
- package/dist/tapestry-wc/dist/components/tds-sidenav.js +5 -5
- package/dist/tapestry-wc/dist/components/tds-sidenav.js.map +1 -1
- package/package.json +3 -3
- package/dist/tapestry-wc/dist/components/p-5-Cvrlgk.js.map +0 -1
- package/dist/tapestry-wc/dist/components/p-74Cc2nEh.js.map +0 -1
- package/dist/tapestry-wc/dist/components/p-D0G2xpOq.js.map +0 -1
- package/dist/tapestry-wc/dist/components/p-D1rzJeWl.js.map +0 -1
- package/dist/tapestry-wc/dist/components/p-DmP02I4b.js.map +0 -1
|
@@ -1,5 +1,228 @@
|
|
|
1
1
|
@layer t-critical, t-component;
|
|
2
2
|
|
|
3
|
+
:root[data-color-mode="dark"]{
|
|
4
|
+
color-scheme:dark;
|
|
5
|
+
--t-text-color-headline:hsl(0, 0%, 94%);
|
|
6
|
+
--t-text-color:hsl(0, 0%, 80%);
|
|
7
|
+
--t-text-color-secondary:hsl(0, 0%, 54%);
|
|
8
|
+
--t-text-color-disabled:hsl(0, 0%, 25%);
|
|
9
|
+
--t-text-color-placeholder:hsl(0, 0%, 38%);
|
|
10
|
+
--t-text-color-interaction:hsl(204, 68%, 55%);
|
|
11
|
+
--t-text-color-interaction-hover:hsl(204, 68%, 50%);
|
|
12
|
+
--t-text-color-interaction-active:hsl(204, 68%, 45%);
|
|
13
|
+
--t-text-color-interaction-visited:hsl(204, 68%, 50%);
|
|
14
|
+
--t-text-color-status-neutral:hsl(0, 0%, 80%);
|
|
15
|
+
--t-text-color-status-info:hsl(204, 68%, 55%);
|
|
16
|
+
--t-text-color-status-success:hsl(97, 57%, 41%);
|
|
17
|
+
--t-text-color-status-warning:hsl(42, 84%, 55%);
|
|
18
|
+
--t-text-color-status-error:hsl(8, 61%, 61%);
|
|
19
|
+
--t-text-color-tag-subtle-gray:hsl(0, 0%, 80%);
|
|
20
|
+
--t-text-color-tag-subtle-blue:hsl(223, 46%, 84%);
|
|
21
|
+
--t-text-color-tag-subtle-indigo:hsl(233, 78%, 84%);
|
|
22
|
+
--t-text-color-tag-subtle-aqua:hsl(208, 77%, 85%);
|
|
23
|
+
--t-text-color-tag-subtle-teal:hsl(180, 95%, 74%);
|
|
24
|
+
--t-text-color-tag-subtle-green:hsl(99, 93%, 84%);
|
|
25
|
+
--t-text-color-tag-subtle-yellow:hsl(29, 100%, 85%);
|
|
26
|
+
--t-text-color-tag-subtle-orange:hsl(18, 100%, 85%);
|
|
27
|
+
--t-text-color-tag-subtle-pink:hsl(328, 89%, 89%);
|
|
28
|
+
--t-text-color-tag-subtle-purple:hsl(268, 70%, 88%);
|
|
29
|
+
--t-text-color-tag-subtle-magenta:hsl(285, 70%, 88%);
|
|
30
|
+
--t-text-color-tag-bold-gray:hsl(0, 0%, 100%);
|
|
31
|
+
--t-text-color-tag-bold-indigo:hsl(0, 0%, 100%);
|
|
32
|
+
--t-text-color-tag-bold-blue:hsl(0, 0%, 100%);
|
|
33
|
+
--t-text-color-tag-bold-aqua:hsl(0, 0%, 100%);
|
|
34
|
+
--t-text-color-tag-bold-teal:hsl(0, 0%, 100%);
|
|
35
|
+
--t-text-color-tag-bold-green:hsl(0, 0%, 100%);
|
|
36
|
+
--t-text-color-tag-bold-yellow:hsl(0, 0%, 100%);
|
|
37
|
+
--t-text-color-tag-bold-orange:hsl(0, 0%, 100%);
|
|
38
|
+
--t-text-color-tag-bold-pink:hsl(0, 0%, 100%);
|
|
39
|
+
--t-text-color-tag-bold-purple:hsl(0, 0%, 100%);
|
|
40
|
+
--t-text-color-tag-bold-magenta:hsl(0, 0%, 100%);
|
|
41
|
+
--t-icon-color:hsl(0, 0%, 80%);
|
|
42
|
+
--t-icon-color-secondary:hsl(0, 0%, 54%);
|
|
43
|
+
--t-icon-color-dim:hsl(0, 0%, 38%);
|
|
44
|
+
--t-icon-color-disabled:hsl(0, 0%, 25%);
|
|
45
|
+
--t-icon-color-status-neutral:hsl(0, 0%, 54%);
|
|
46
|
+
--t-icon-color-status-neutral-secondary:hsl(0, 0%, 38%);
|
|
47
|
+
--t-icon-color-status-neutral-bold:hsl(0, 0%, 80%);
|
|
48
|
+
--t-icon-color-status-info:hsl(204, 68%, 55%);
|
|
49
|
+
--t-icon-color-status-error:hsl(8, 61%, 61%);
|
|
50
|
+
--t-fill-color-neutral-100:hsl(0, 0%, 10%);
|
|
51
|
+
--t-fill-color-neutral-000:hsl(0, 0%, 98%);
|
|
52
|
+
--t-fill-color-neutral-010:hsl(0, 0%, 88%);
|
|
53
|
+
--t-fill-color-neutral-020:hsl(0, 0%, 68%);
|
|
54
|
+
--t-fill-color-neutral-025:hsl(0, 0%, 58%);
|
|
55
|
+
--t-fill-color-neutral-030:hsl(0, 0%, 50%);
|
|
56
|
+
--t-fill-color-neutral-040:hsl(0, 0%, 32%);
|
|
57
|
+
--t-fill-color-neutral-050:hsl(0, 0%, 24%);
|
|
58
|
+
--t-fill-color-neutral-060:hsl(0, 0%, 19%);
|
|
59
|
+
--t-fill-color-neutral-070:hsl(0, 0%, 17%);
|
|
60
|
+
--t-fill-color-neutral-080:hsl(0, 0%, 15%);
|
|
61
|
+
--t-fill-color-neutral-090:hsl(0, 0%, 12%);
|
|
62
|
+
--t-fill-color-interaction:hsl(204, 100%, 35%);
|
|
63
|
+
--t-fill-color-interaction-hover:hsl(204, 100%, 40%);
|
|
64
|
+
--t-fill-color-interaction-active:hsl(204, 80%, 45%);
|
|
65
|
+
--t-fill-color-interaction-disabled:hsl(0, 0%, 25%);
|
|
66
|
+
--t-fill-color-control-neutral-off:hsl(0, 0%, 32%);
|
|
67
|
+
--t-fill-color-control-neutral-on:hsl(0, 0%, 50%);
|
|
68
|
+
--t-fill-color-control:hsl(204, 100%, 35%);
|
|
69
|
+
--t-fill-color-control-disabled:hsl(0, 0%, 20%);
|
|
70
|
+
--t-fill-color-status-neutral:hsl(0, 0%, 24%);
|
|
71
|
+
--t-fill-color-status-neutral-ghost:hsl(0, 0%, 18%);
|
|
72
|
+
--t-fill-color-status-neutral-dim:hsl(0, 0%, 15%);
|
|
73
|
+
--t-fill-color-status-info:hsl(204, 100%, 35%);
|
|
74
|
+
--t-fill-color-status-info-ghost:hsl(204, 32%, 15%);
|
|
75
|
+
--t-fill-color-status-info-dim:hsl(206, 22%, 15%);
|
|
76
|
+
--t-fill-color-status-success-ghost:hsl(125, 17%, 15%);
|
|
77
|
+
--t-fill-color-status-success-dim:hsl(120, 12%, 14%);
|
|
78
|
+
--t-fill-color-status-warning-ghost:hsl(41, 18%, 17%);
|
|
79
|
+
--t-fill-color-status-warning-dim:hsl(42, 13%, 15%);
|
|
80
|
+
--t-fill-color-status-error-ghost:hsl(8, 20%, 16%);
|
|
81
|
+
--t-fill-color-status-error-dim:hsl(10, 16%, 15%);
|
|
82
|
+
--t-fill-color-tooltip:hsla(0, 0%, 24%, 0.9);
|
|
83
|
+
--t-fill-color-product-accounts-gradient-page:linear-gradient(111.72deg, hsl(220, 30%, 21%), hsl(220, 48%, 17%), hsl(204, 70%, 12%));
|
|
84
|
+
--t-fill-color-product-accounts-gradient-tint:linear-gradient(111.72deg, hsl(219, 21%, 16%), hsl(220, 30%, 14%), hsl(203, 37%, 11%));
|
|
85
|
+
--t-fill-color-product-calendar-gradient-page:linear-gradient(111.72deg, hsl(8, 48%, 15%), hsl(278, 13%, 17%), hsl(204, 70%, 12%));
|
|
86
|
+
--t-fill-color-product-calendar-gradient-tint:linear-gradient(111.72deg, hsl(9, 29%, 13%), hsl(276, 8%, 12%), hsl(203, 37%, 11%));
|
|
87
|
+
--t-fill-color-product-checkins-gradient-page:linear-gradient(111.72deg, hsl(285, 17%, 18%) 25%, hsl(263, 15%, 17%) 60%, hsl(204, 70%, 12%));
|
|
88
|
+
--t-fill-color-product-checkins-gradient-tint:linear-gradient(111.72deg, hsl(285, 11%, 14%), hsl(266, 10%, 14%) 42%, hsl(203, 37%, 11%));
|
|
89
|
+
--t-fill-color-product-giving-gradient-page:linear-gradient(111.72deg, hsl(43, 80%, 16%), hsl(267, 15%, 14%) 58.5%, hsl(204, 70%, 12%));
|
|
90
|
+
--t-fill-color-product-giving-gradient-tint:linear-gradient(111.72deg, hsl(44, 49%, 13%), hsl(264, 8%, 12%) 58.5%, hsl(203, 37%, 11%));
|
|
91
|
+
--t-fill-color-product-groups-gradient-page:linear-gradient(111.72deg, hsl(23, 46%, 18%), hsl(278, 13%, 17%), hsl(204, 70%, 12%));
|
|
92
|
+
--t-fill-color-product-groups-gradient-tint:linear-gradient(111.72deg, hsl(23, 29%, 14%), hsl(276, 7%, 14%), hsl(203, 37%, 11%));
|
|
93
|
+
--t-fill-color-product-home-gradient-page:linear-gradient(111.72deg, hsl(220, 30%, 21%), hsl(220, 48%, 17%), hsl(204, 70%, 12%));
|
|
94
|
+
--t-fill-color-product-home-gradient-tint:linear-gradient(111.72deg, hsl(219, 21%, 16%), hsl(220, 30%, 14%), hsl(203, 37%, 11%));
|
|
95
|
+
--t-fill-color-product-people-gradient-page:linear-gradient(111.72deg, hsl(220, 30%, 21%), hsl(220, 48%, 17%), hsl(204, 70%, 12%));
|
|
96
|
+
--t-fill-color-product-people-gradient-tint:linear-gradient(111.72deg, hsl(219, 21%, 16%), hsl(220, 30%, 14%), hsl(203, 37%, 11%));
|
|
97
|
+
--t-fill-color-product-publishing-gradient-page:linear-gradient(111.72deg, hsl(225, 11%, 22%), hsl(227, 20%, 18%) 45%, hsl(204, 70%, 12%));
|
|
98
|
+
--t-fill-color-product-publishing-gradient-tint:linear-gradient(111.72deg, hsl(220, 7%, 16%), hsl(227, 12%, 14%) 45%, hsl(203, 37%, 11%));
|
|
99
|
+
--t-fill-color-product-registrations-gradient-page:linear-gradient(111.72deg, hsl(174, 34%, 18%), hsl(187, 39%, 14%) 39.5%, hsl(204, 70%, 12%));
|
|
100
|
+
--t-fill-color-product-registrations-gradient-tint:linear-gradient(111.72deg, hsl(173, 22%, 15%), hsl(185, 21%, 12%) 39.5%, hsl(203, 37%, 11%));
|
|
101
|
+
--t-fill-color-product-services-gradient-page:linear-gradient(111.72deg, hsl(87, 26%, 18%), hsl(88, 25%, 15%) 39.5%, hsl(204, 70%, 12%));
|
|
102
|
+
--t-fill-color-product-services-gradient-tint:linear-gradient(111.72deg, hsl(85, 17%, 14%), hsl(87, 14%, 13%) 39.5%, hsl(203, 37%, 11%));
|
|
103
|
+
--t-fill-color-tag-gray-010:hsl(0, 0%, 20%);
|
|
104
|
+
--t-fill-color-tag-gray-020:hsl(0, 0%, 24%);
|
|
105
|
+
--t-fill-color-tag-gray-030:hsl(0, 0%, 36%);
|
|
106
|
+
--t-fill-color-tag-gray-040:hsl(0, 0%, 42%);
|
|
107
|
+
--t-fill-color-tag-blue-010:hsl(219, 26%, 24%);
|
|
108
|
+
--t-fill-color-tag-blue-020:hsl(220, 28%, 29%);
|
|
109
|
+
--t-fill-color-tag-blue-030:hsl(219, 32%, 45%);
|
|
110
|
+
--t-fill-color-tag-blue-040:hsl(220, 35%, 52%);
|
|
111
|
+
--t-fill-color-tag-aqua-010:hsl(200, 30%, 21%);
|
|
112
|
+
--t-fill-color-tag-aqua-020:hsl(200, 33%, 26%);
|
|
113
|
+
--t-fill-color-tag-aqua-030:hsl(200, 39%, 38%);
|
|
114
|
+
--t-fill-color-tag-aqua-040:hsl(200, 39%, 43%);
|
|
115
|
+
--t-fill-color-tag-teal-010:hsl(169, 33%, 19%);
|
|
116
|
+
--t-fill-color-tag-teal-020:hsl(169, 37%, 22%);
|
|
117
|
+
--t-fill-color-tag-teal-030:hsl(169, 43%, 31%);
|
|
118
|
+
--t-fill-color-tag-teal-040:hsl(169, 44%, 35%);
|
|
119
|
+
--t-fill-color-tag-green-010:hsl(110, 30%, 20%);
|
|
120
|
+
--t-fill-color-tag-green-020:hsl(112, 33%, 23%);
|
|
121
|
+
--t-fill-color-tag-green-030:hsl(112, 37%, 33%);
|
|
122
|
+
--t-fill-color-tag-green-040:hsl(112, 39%, 37%);
|
|
123
|
+
--t-fill-color-tag-yellow-010:hsl(44, 39%, 19%);
|
|
124
|
+
--t-fill-color-tag-yellow-020:hsl(44, 44%, 22%);
|
|
125
|
+
--t-fill-color-tag-yellow-030:hsl(44, 50%, 31%);
|
|
126
|
+
--t-fill-color-tag-yellow-040:hsl(44, 53%, 36%);
|
|
127
|
+
--t-fill-color-tag-orange-010:hsl(21, 35%, 22%);
|
|
128
|
+
--t-fill-color-tag-orange-020:hsl(20, 38%, 26%);
|
|
129
|
+
--t-fill-color-tag-orange-030:hsl(21, 44%, 40%);
|
|
130
|
+
--t-fill-color-tag-orange-040:hsl(21, 46%, 45%);
|
|
131
|
+
--t-fill-color-tag-pink-010:hsl(331, 22%, 24%);
|
|
132
|
+
--t-fill-color-tag-pink-020:hsl(324, 26%, 26%);
|
|
133
|
+
--t-fill-color-tag-pink-030:hsl(324, 30%, 45%);
|
|
134
|
+
--t-fill-color-tag-pink-040:hsl(324, 33%, 51%);
|
|
135
|
+
--t-fill-color-tag-purple-010:hsl(274, 20%, 23%);
|
|
136
|
+
--t-fill-color-tag-purple-020:hsl(274, 21%, 28%);
|
|
137
|
+
--t-fill-color-tag-purple-030:hsl(274, 25%, 46%);
|
|
138
|
+
--t-fill-color-tag-purple-040:hsl(274, 28%, 53%);
|
|
139
|
+
--t-fill-color-tag-magenta-010:hsl(292, 20%, 21%);
|
|
140
|
+
--t-fill-color-tag-magenta-020:hsl(292, 22%, 26%);
|
|
141
|
+
--t-fill-color-tag-magenta-030:hsl(293, 26%, 42%);
|
|
142
|
+
--t-fill-color-tag-magenta-040:hsl(292, 27%, 48%);
|
|
143
|
+
--t-fill-color-tag-indigo-010:hsl(235, 21%, 24%);
|
|
144
|
+
--t-fill-color-tag-indigo-020:hsl(236, 22%, 29%);
|
|
145
|
+
--t-fill-color-tag-indigo-030:hsl(236, 26%, 50%);
|
|
146
|
+
--t-fill-color-tag-indigo-040:hsl(236, 34%, 56%);
|
|
147
|
+
--t-fill-color-button-neutral-solid:hsl(0, 0%, 19%);
|
|
148
|
+
--t-fill-color-button-neutral-solid-hover:hsl(0, 0%, 24%);
|
|
149
|
+
--t-fill-color-button-neutral-solid-active:hsl(0, 0%, 32%);
|
|
150
|
+
--t-fill-color-button-neutral-solid-disabled:hsl(0, 0%, 12%);
|
|
151
|
+
--t-fill-color-button-neutral-outline:hsl(0, 0%, 15%);
|
|
152
|
+
--t-fill-color-button-neutral-outline-hover:hsl(0, 0%, 17%);
|
|
153
|
+
--t-fill-color-button-neutral-outline-active:hsl(0, 0%, 19%);
|
|
154
|
+
--t-fill-color-button-neutral-outline-disabled:hsl(0, 0%, 12%);
|
|
155
|
+
--t-fill-color-button-neutral-ghost:hsla(0, 0%, 0%, 0);
|
|
156
|
+
--t-fill-color-button-neutral-ghost-hover:hsl(0, 0%, 17%);
|
|
157
|
+
--t-fill-color-button-neutral-ghost-active:hsl(0, 0%, 19%);
|
|
158
|
+
--t-fill-color-button-neutral-ghost-disabled:hsla(0, 0%, 0%, 0);
|
|
159
|
+
--t-fill-color-button-neutral-responsive-header-disabled:hsla(0, 0%, 100%, 0.05);
|
|
160
|
+
--t-fill-color-button-interaction-solid:hsl(204, 100%, 35%);
|
|
161
|
+
--t-fill-color-button-interaction-solid-hover:hsl(204, 100%, 40%);
|
|
162
|
+
--t-fill-color-button-interaction-solid-active:hsl(204, 80%, 45%);
|
|
163
|
+
--t-fill-color-button-interaction-solid-disabled:hsl(0, 0%, 12%);
|
|
164
|
+
--t-fill-color-button-interaction-outline:hsl(204, 32%, 15%);
|
|
165
|
+
--t-fill-color-button-interaction-outline-hover:hsl(204, 39%, 17%);
|
|
166
|
+
--t-fill-color-button-interaction-outline-active:hsl(205, 45%, 18%);
|
|
167
|
+
--t-fill-color-button-interaction-outline-disabled:hsl(0, 0%, 12%);
|
|
168
|
+
--t-fill-color-button-interaction-ghost:hsla(0, 0%, 0%, 0);
|
|
169
|
+
--t-fill-color-button-interaction-ghost-hover:hsl(204, 32%, 15%);
|
|
170
|
+
--t-fill-color-button-interaction-ghost-active:hsl(204, 39%, 17%);
|
|
171
|
+
--t-fill-color-button-interaction-ghost-disabled:hsla(0, 0%, 0%, 0);
|
|
172
|
+
--t-fill-color-button-delete-solid:hsl(8, 60%, 40%);
|
|
173
|
+
--t-fill-color-button-delete-solid-active:hsl(8, 60%, 47%);
|
|
174
|
+
--t-fill-color-button-delete-solid-disabled:hsl(0, 0%, 12%);
|
|
175
|
+
--t-fill-color-button-delete-outline:hsl(8, 20%, 16%);
|
|
176
|
+
--t-fill-color-button-delete-outline-hover:hsl(9, 24%, 17%);
|
|
177
|
+
--t-fill-color-button-delete-outline-active:hsl(9, 29%, 19%);
|
|
178
|
+
--t-fill-color-button-delete-outline-disabled:hsl(0, 0%, 12%);
|
|
179
|
+
--t-fill-color-button-delete-ghost:hsla(0, 0%, 0%, 0);
|
|
180
|
+
--t-fill-color-button-delete-ghost-hover:hsl(8, 20%, 16%);
|
|
181
|
+
--t-fill-color-button-delete-ghost-active:hsl(9, 24%, 17%);
|
|
182
|
+
--t-fill-color-button-delete-ghost-disabled:hsla(0, 0%, 0%, 0);
|
|
183
|
+
--t-fill-color-button-pill:hsl(0, 0%, 18%);
|
|
184
|
+
--t-fill-color-button-pill-hover:hsl(0, 0%, 21%);
|
|
185
|
+
--t-fill-color-button-pill-active:hsl(0, 0%, 21%);
|
|
186
|
+
--t-fill-color-button-pill-disabled:hsl(0, 0%, 18%);
|
|
187
|
+
--t-fill-color-transparency-light-010:hsla(0, 0%, 0%, 0.1);
|
|
188
|
+
--t-fill-color-transparency-light-020:hsla(0, 0%, 0%, 0.2);
|
|
189
|
+
--t-fill-color-transparency-light-030:hsla(0, 0%, 0%, 0.3);
|
|
190
|
+
--t-fill-color-transparency-light-040:hsla(0, 0%, 0%, 0.4);
|
|
191
|
+
--t-fill-color-transparency-light-050:hsla(0, 0%, 0%, 0.5);
|
|
192
|
+
--t-fill-color-transparency-light-060:hsla(0, 0%, 0%, 0.6);
|
|
193
|
+
--t-fill-color-transparency-light-070:hsla(0, 0%, 0%, 0.7);
|
|
194
|
+
--t-fill-color-transparency-light-080:hsla(0, 0%, 0%, 0.8);
|
|
195
|
+
--t-fill-color-transparency-light-090:hsla(0, 0%, 0%, 0.9);
|
|
196
|
+
--t-fill-color-transparency-dark-010:hsla(0, 0%, 100%, 0.1);
|
|
197
|
+
--t-fill-color-transparency-dark-020:hsla(0, 0%, 100%, 0.2);
|
|
198
|
+
--t-fill-color-transparency-dark-030:hsla(0, 0%, 100%, 0.3);
|
|
199
|
+
--t-fill-color-transparency-dark-040:hsla(0, 0%, 100%, 0.4);
|
|
200
|
+
--t-fill-color-transparency-dark-050:hsla(0, 0%, 100%, 0.5);
|
|
201
|
+
--t-fill-color-transparency-dark-060:hsla(0, 0%, 100%, 0.6);
|
|
202
|
+
--t-fill-color-transparency-dark-070:hsla(0, 0%, 100%, 0.7);
|
|
203
|
+
--t-fill-color-transparency-dark-080:hsla(0, 0%, 100%, 0.8);
|
|
204
|
+
--t-fill-color-transparency-dark-090:hsla(0, 0%, 100%, 0.9);
|
|
205
|
+
--t-surface-color-card:hsl(0, 0%, 12%);
|
|
206
|
+
--t-surface-color-canvas:hsl(0, 0%, 10%);
|
|
207
|
+
--t-border-color:hsl(0, 0%, 21%);
|
|
208
|
+
--t-border-color-dark:hsl(0, 0%, 25%);
|
|
209
|
+
--t-border-color-darker:hsl(0, 0%, 33%);
|
|
210
|
+
--t-border-color-darkest:hsl(0, 0%, 38%);
|
|
211
|
+
--t-border-color-disabled:hsl(0, 0%, 21%);
|
|
212
|
+
--t-border-color-dim:hsl(0, 0%, 16%);
|
|
213
|
+
--t-border-color-white:hsl(0, 0%, 12%);
|
|
214
|
+
--t-border-color-status-neutral:hsl(0, 0%, 38%);
|
|
215
|
+
--t-border-color-status-info:hsl(204, 100%, 35%);
|
|
216
|
+
--t-border-color-button-neutral:hsl(0, 0%, 19%);
|
|
217
|
+
--t-border-color-button-info:hsla(204, 100%, 40%, 0.25);
|
|
218
|
+
--t-border-color-button-create:hsla(96, 57%, 33%, 0.25);
|
|
219
|
+
--t-border-color-button-delete:hsla(8, 60%, 47%, 0.25);
|
|
220
|
+
--t-border-color-control-neutral:hsl(0, 0%, 33%);
|
|
221
|
+
--t-border-color-control-info:hsl(204, 100%, 35%);
|
|
222
|
+
--t-border-color-control-disabled:hsl(0, 0%, 21%);
|
|
223
|
+
--t-shadow-overflow-color:hsla(0, 0%, 0%, 0.6);
|
|
224
|
+
}
|
|
225
|
+
|
|
3
226
|
:root{
|
|
4
227
|
--t-border-radius-sm:2px;
|
|
5
228
|
--t-border-radius-md:4px;
|
|
@@ -414,229 +637,6 @@
|
|
|
414
637
|
--t-form-placeholder-color:var(--t-text-color-placeholder);
|
|
415
638
|
}
|
|
416
639
|
|
|
417
|
-
:root[data-color-mode="dark"]{
|
|
418
|
-
color-scheme:dark;
|
|
419
|
-
--t-text-color-headline:hsl(0, 0%, 94%);
|
|
420
|
-
--t-text-color:hsl(0, 0%, 80%);
|
|
421
|
-
--t-text-color-secondary:hsl(0, 0%, 54%);
|
|
422
|
-
--t-text-color-disabled:hsl(0, 0%, 25%);
|
|
423
|
-
--t-text-color-placeholder:hsl(0, 0%, 38%);
|
|
424
|
-
--t-text-color-interaction:hsl(204, 68%, 55%);
|
|
425
|
-
--t-text-color-interaction-hover:hsl(204, 68%, 50%);
|
|
426
|
-
--t-text-color-interaction-active:hsl(204, 68%, 45%);
|
|
427
|
-
--t-text-color-interaction-visited:hsl(204, 68%, 50%);
|
|
428
|
-
--t-text-color-status-neutral:hsl(0, 0%, 80%);
|
|
429
|
-
--t-text-color-status-info:hsl(204, 68%, 55%);
|
|
430
|
-
--t-text-color-status-success:hsl(97, 57%, 41%);
|
|
431
|
-
--t-text-color-status-warning:hsl(42, 84%, 55%);
|
|
432
|
-
--t-text-color-status-error:hsl(8, 61%, 61%);
|
|
433
|
-
--t-text-color-tag-subtle-gray:hsl(0, 0%, 80%);
|
|
434
|
-
--t-text-color-tag-subtle-blue:hsl(223, 46%, 84%);
|
|
435
|
-
--t-text-color-tag-subtle-indigo:hsl(233, 78%, 84%);
|
|
436
|
-
--t-text-color-tag-subtle-aqua:hsl(208, 77%, 85%);
|
|
437
|
-
--t-text-color-tag-subtle-teal:hsl(180, 95%, 74%);
|
|
438
|
-
--t-text-color-tag-subtle-green:hsl(99, 93%, 84%);
|
|
439
|
-
--t-text-color-tag-subtle-yellow:hsl(29, 100%, 85%);
|
|
440
|
-
--t-text-color-tag-subtle-orange:hsl(18, 100%, 85%);
|
|
441
|
-
--t-text-color-tag-subtle-pink:hsl(328, 89%, 89%);
|
|
442
|
-
--t-text-color-tag-subtle-purple:hsl(268, 70%, 88%);
|
|
443
|
-
--t-text-color-tag-subtle-magenta:hsl(285, 70%, 88%);
|
|
444
|
-
--t-text-color-tag-bold-gray:hsl(0, 0%, 100%);
|
|
445
|
-
--t-text-color-tag-bold-indigo:hsl(0, 0%, 100%);
|
|
446
|
-
--t-text-color-tag-bold-blue:hsl(0, 0%, 100%);
|
|
447
|
-
--t-text-color-tag-bold-aqua:hsl(0, 0%, 100%);
|
|
448
|
-
--t-text-color-tag-bold-teal:hsl(0, 0%, 100%);
|
|
449
|
-
--t-text-color-tag-bold-green:hsl(0, 0%, 100%);
|
|
450
|
-
--t-text-color-tag-bold-yellow:hsl(0, 0%, 100%);
|
|
451
|
-
--t-text-color-tag-bold-orange:hsl(0, 0%, 100%);
|
|
452
|
-
--t-text-color-tag-bold-pink:hsl(0, 0%, 100%);
|
|
453
|
-
--t-text-color-tag-bold-purple:hsl(0, 0%, 100%);
|
|
454
|
-
--t-text-color-tag-bold-magenta:hsl(0, 0%, 100%);
|
|
455
|
-
--t-icon-color:hsl(0, 0%, 80%);
|
|
456
|
-
--t-icon-color-secondary:hsl(0, 0%, 54%);
|
|
457
|
-
--t-icon-color-dim:hsl(0, 0%, 38%);
|
|
458
|
-
--t-icon-color-disabled:hsl(0, 0%, 25%);
|
|
459
|
-
--t-icon-color-status-neutral:hsl(0, 0%, 54%);
|
|
460
|
-
--t-icon-color-status-neutral-secondary:hsl(0, 0%, 38%);
|
|
461
|
-
--t-icon-color-status-neutral-bold:hsl(0, 0%, 80%);
|
|
462
|
-
--t-icon-color-status-info:hsl(204, 68%, 55%);
|
|
463
|
-
--t-icon-color-status-error:hsl(8, 61%, 61%);
|
|
464
|
-
--t-fill-color-neutral-100:hsl(0, 0%, 10%);
|
|
465
|
-
--t-fill-color-neutral-000:hsl(0, 0%, 98%);
|
|
466
|
-
--t-fill-color-neutral-010:hsl(0, 0%, 88%);
|
|
467
|
-
--t-fill-color-neutral-020:hsl(0, 0%, 68%);
|
|
468
|
-
--t-fill-color-neutral-025:hsl(0, 0%, 58%);
|
|
469
|
-
--t-fill-color-neutral-030:hsl(0, 0%, 50%);
|
|
470
|
-
--t-fill-color-neutral-040:hsl(0, 0%, 32%);
|
|
471
|
-
--t-fill-color-neutral-050:hsl(0, 0%, 24%);
|
|
472
|
-
--t-fill-color-neutral-060:hsl(0, 0%, 19%);
|
|
473
|
-
--t-fill-color-neutral-070:hsl(0, 0%, 17%);
|
|
474
|
-
--t-fill-color-neutral-080:hsl(0, 0%, 15%);
|
|
475
|
-
--t-fill-color-neutral-090:hsl(0, 0%, 12%);
|
|
476
|
-
--t-fill-color-interaction:hsl(204, 100%, 35%);
|
|
477
|
-
--t-fill-color-interaction-hover:hsl(204, 100%, 40%);
|
|
478
|
-
--t-fill-color-interaction-active:hsl(204, 80%, 45%);
|
|
479
|
-
--t-fill-color-interaction-disabled:hsl(0, 0%, 25%);
|
|
480
|
-
--t-fill-color-control-neutral-off:hsl(0, 0%, 32%);
|
|
481
|
-
--t-fill-color-control-neutral-on:hsl(0, 0%, 50%);
|
|
482
|
-
--t-fill-color-control:hsl(204, 100%, 35%);
|
|
483
|
-
--t-fill-color-control-disabled:hsl(0, 0%, 20%);
|
|
484
|
-
--t-fill-color-status-neutral:hsl(0, 0%, 24%);
|
|
485
|
-
--t-fill-color-status-neutral-ghost:hsl(0, 0%, 18%);
|
|
486
|
-
--t-fill-color-status-neutral-dim:hsl(0, 0%, 15%);
|
|
487
|
-
--t-fill-color-status-info:hsl(204, 100%, 35%);
|
|
488
|
-
--t-fill-color-status-info-ghost:hsl(204, 32%, 15%);
|
|
489
|
-
--t-fill-color-status-info-dim:hsl(206, 22%, 15%);
|
|
490
|
-
--t-fill-color-status-success-ghost:hsl(125, 17%, 15%);
|
|
491
|
-
--t-fill-color-status-success-dim:hsl(120, 12%, 14%);
|
|
492
|
-
--t-fill-color-status-warning-ghost:hsl(41, 18%, 17%);
|
|
493
|
-
--t-fill-color-status-warning-dim:hsl(42, 13%, 15%);
|
|
494
|
-
--t-fill-color-status-error-ghost:hsl(8, 20%, 16%);
|
|
495
|
-
--t-fill-color-status-error-dim:hsl(10, 16%, 15%);
|
|
496
|
-
--t-fill-color-tooltip:hsla(0, 0%, 24%, 0.9);
|
|
497
|
-
--t-fill-color-product-accounts-gradient-page:linear-gradient(111.72deg, hsl(220, 30%, 21%), hsl(220, 48%, 17%), hsl(204, 70%, 12%));
|
|
498
|
-
--t-fill-color-product-accounts-gradient-tint:linear-gradient(111.72deg, hsl(219, 21%, 16%), hsl(220, 30%, 14%), hsl(203, 37%, 11%));
|
|
499
|
-
--t-fill-color-product-calendar-gradient-page:linear-gradient(111.72deg, hsl(8, 48%, 15%), hsl(278, 13%, 17%), hsl(204, 70%, 12%));
|
|
500
|
-
--t-fill-color-product-calendar-gradient-tint:linear-gradient(111.72deg, hsl(9, 29%, 13%), hsl(276, 8%, 12%), hsl(203, 37%, 11%));
|
|
501
|
-
--t-fill-color-product-checkins-gradient-page:linear-gradient(111.72deg, hsl(285, 17%, 18%) 25%, hsl(263, 15%, 17%) 60%, hsl(204, 70%, 12%));
|
|
502
|
-
--t-fill-color-product-checkins-gradient-tint:linear-gradient(111.72deg, hsl(285, 11%, 14%), hsl(266, 10%, 14%) 42%, hsl(203, 37%, 11%));
|
|
503
|
-
--t-fill-color-product-giving-gradient-page:linear-gradient(111.72deg, hsl(43, 80%, 16%), hsl(267, 15%, 14%) 58.5%, hsl(204, 70%, 12%));
|
|
504
|
-
--t-fill-color-product-giving-gradient-tint:linear-gradient(111.72deg, hsl(44, 49%, 13%), hsl(264, 8%, 12%) 58.5%, hsl(203, 37%, 11%));
|
|
505
|
-
--t-fill-color-product-groups-gradient-page:linear-gradient(111.72deg, hsl(23, 46%, 18%), hsl(278, 13%, 17%), hsl(204, 70%, 12%));
|
|
506
|
-
--t-fill-color-product-groups-gradient-tint:linear-gradient(111.72deg, hsl(23, 29%, 14%), hsl(276, 7%, 14%), hsl(203, 37%, 11%));
|
|
507
|
-
--t-fill-color-product-home-gradient-page:linear-gradient(111.72deg, hsl(220, 30%, 21%), hsl(220, 48%, 17%), hsl(204, 70%, 12%));
|
|
508
|
-
--t-fill-color-product-home-gradient-tint:linear-gradient(111.72deg, hsl(219, 21%, 16%), hsl(220, 30%, 14%), hsl(203, 37%, 11%));
|
|
509
|
-
--t-fill-color-product-people-gradient-page:linear-gradient(111.72deg, hsl(220, 30%, 21%), hsl(220, 48%, 17%), hsl(204, 70%, 12%));
|
|
510
|
-
--t-fill-color-product-people-gradient-tint:linear-gradient(111.72deg, hsl(219, 21%, 16%), hsl(220, 30%, 14%), hsl(203, 37%, 11%));
|
|
511
|
-
--t-fill-color-product-publishing-gradient-page:linear-gradient(111.72deg, hsl(225, 11%, 22%), hsl(227, 20%, 18%) 45%, hsl(204, 70%, 12%));
|
|
512
|
-
--t-fill-color-product-publishing-gradient-tint:linear-gradient(111.72deg, hsl(220, 7%, 16%), hsl(227, 12%, 14%) 45%, hsl(203, 37%, 11%));
|
|
513
|
-
--t-fill-color-product-registrations-gradient-page:linear-gradient(111.72deg, hsl(174, 34%, 18%), hsl(187, 39%, 14%) 39.5%, hsl(204, 70%, 12%));
|
|
514
|
-
--t-fill-color-product-registrations-gradient-tint:linear-gradient(111.72deg, hsl(173, 22%, 15%), hsl(185, 21%, 12%) 39.5%, hsl(203, 37%, 11%));
|
|
515
|
-
--t-fill-color-product-services-gradient-page:linear-gradient(111.72deg, hsl(87, 26%, 18%), hsl(88, 25%, 15%) 39.5%, hsl(204, 70%, 12%));
|
|
516
|
-
--t-fill-color-product-services-gradient-tint:linear-gradient(111.72deg, hsl(85, 17%, 14%), hsl(87, 14%, 13%) 39.5%, hsl(203, 37%, 11%));
|
|
517
|
-
--t-fill-color-tag-gray-010:hsl(0, 0%, 20%);
|
|
518
|
-
--t-fill-color-tag-gray-020:hsl(0, 0%, 24%);
|
|
519
|
-
--t-fill-color-tag-gray-030:hsl(0, 0%, 36%);
|
|
520
|
-
--t-fill-color-tag-gray-040:hsl(0, 0%, 42%);
|
|
521
|
-
--t-fill-color-tag-blue-010:hsl(219, 26%, 24%);
|
|
522
|
-
--t-fill-color-tag-blue-020:hsl(220, 28%, 29%);
|
|
523
|
-
--t-fill-color-tag-blue-030:hsl(219, 32%, 45%);
|
|
524
|
-
--t-fill-color-tag-blue-040:hsl(220, 35%, 52%);
|
|
525
|
-
--t-fill-color-tag-aqua-010:hsl(200, 30%, 21%);
|
|
526
|
-
--t-fill-color-tag-aqua-020:hsl(200, 33%, 26%);
|
|
527
|
-
--t-fill-color-tag-aqua-030:hsl(200, 39%, 38%);
|
|
528
|
-
--t-fill-color-tag-aqua-040:hsl(200, 39%, 43%);
|
|
529
|
-
--t-fill-color-tag-teal-010:hsl(169, 33%, 19%);
|
|
530
|
-
--t-fill-color-tag-teal-020:hsl(169, 37%, 22%);
|
|
531
|
-
--t-fill-color-tag-teal-030:hsl(169, 43%, 31%);
|
|
532
|
-
--t-fill-color-tag-teal-040:hsl(169, 44%, 35%);
|
|
533
|
-
--t-fill-color-tag-green-010:hsl(110, 30%, 20%);
|
|
534
|
-
--t-fill-color-tag-green-020:hsl(112, 33%, 23%);
|
|
535
|
-
--t-fill-color-tag-green-030:hsl(112, 37%, 33%);
|
|
536
|
-
--t-fill-color-tag-green-040:hsl(112, 39%, 37%);
|
|
537
|
-
--t-fill-color-tag-yellow-010:hsl(44, 39%, 19%);
|
|
538
|
-
--t-fill-color-tag-yellow-020:hsl(44, 44%, 22%);
|
|
539
|
-
--t-fill-color-tag-yellow-030:hsl(44, 50%, 31%);
|
|
540
|
-
--t-fill-color-tag-yellow-040:hsl(44, 53%, 36%);
|
|
541
|
-
--t-fill-color-tag-orange-010:hsl(21, 35%, 22%);
|
|
542
|
-
--t-fill-color-tag-orange-020:hsl(20, 38%, 26%);
|
|
543
|
-
--t-fill-color-tag-orange-030:hsl(21, 44%, 40%);
|
|
544
|
-
--t-fill-color-tag-orange-040:hsl(21, 46%, 45%);
|
|
545
|
-
--t-fill-color-tag-pink-010:hsl(331, 22%, 24%);
|
|
546
|
-
--t-fill-color-tag-pink-020:hsl(324, 26%, 26%);
|
|
547
|
-
--t-fill-color-tag-pink-030:hsl(324, 30%, 45%);
|
|
548
|
-
--t-fill-color-tag-pink-040:hsl(324, 33%, 51%);
|
|
549
|
-
--t-fill-color-tag-purple-010:hsl(274, 20%, 23%);
|
|
550
|
-
--t-fill-color-tag-purple-020:hsl(274, 21%, 28%);
|
|
551
|
-
--t-fill-color-tag-purple-030:hsl(274, 25%, 46%);
|
|
552
|
-
--t-fill-color-tag-purple-040:hsl(274, 28%, 53%);
|
|
553
|
-
--t-fill-color-tag-magenta-010:hsl(292, 20%, 21%);
|
|
554
|
-
--t-fill-color-tag-magenta-020:hsl(292, 22%, 26%);
|
|
555
|
-
--t-fill-color-tag-magenta-030:hsl(293, 26%, 42%);
|
|
556
|
-
--t-fill-color-tag-magenta-040:hsl(292, 27%, 48%);
|
|
557
|
-
--t-fill-color-tag-indigo-010:hsl(235, 21%, 24%);
|
|
558
|
-
--t-fill-color-tag-indigo-020:hsl(236, 22%, 29%);
|
|
559
|
-
--t-fill-color-tag-indigo-030:hsl(236, 26%, 50%);
|
|
560
|
-
--t-fill-color-tag-indigo-040:hsl(236, 34%, 56%);
|
|
561
|
-
--t-fill-color-button-neutral-solid:hsl(0, 0%, 19%);
|
|
562
|
-
--t-fill-color-button-neutral-solid-hover:hsl(0, 0%, 24%);
|
|
563
|
-
--t-fill-color-button-neutral-solid-active:hsl(0, 0%, 32%);
|
|
564
|
-
--t-fill-color-button-neutral-solid-disabled:hsl(0, 0%, 12%);
|
|
565
|
-
--t-fill-color-button-neutral-outline:hsl(0, 0%, 15%);
|
|
566
|
-
--t-fill-color-button-neutral-outline-hover:hsl(0, 0%, 17%);
|
|
567
|
-
--t-fill-color-button-neutral-outline-active:hsl(0, 0%, 19%);
|
|
568
|
-
--t-fill-color-button-neutral-outline-disabled:hsl(0, 0%, 12%);
|
|
569
|
-
--t-fill-color-button-neutral-ghost:hsla(0, 0%, 0%, 0);
|
|
570
|
-
--t-fill-color-button-neutral-ghost-hover:hsl(0, 0%, 17%);
|
|
571
|
-
--t-fill-color-button-neutral-ghost-active:hsl(0, 0%, 19%);
|
|
572
|
-
--t-fill-color-button-neutral-ghost-disabled:hsla(0, 0%, 0%, 0);
|
|
573
|
-
--t-fill-color-button-neutral-responsive-header-disabled:hsla(0, 0%, 100%, 0.05);
|
|
574
|
-
--t-fill-color-button-interaction-solid:hsl(204, 100%, 35%);
|
|
575
|
-
--t-fill-color-button-interaction-solid-hover:hsl(204, 100%, 40%);
|
|
576
|
-
--t-fill-color-button-interaction-solid-active:hsl(204, 80%, 45%);
|
|
577
|
-
--t-fill-color-button-interaction-solid-disabled:hsl(0, 0%, 12%);
|
|
578
|
-
--t-fill-color-button-interaction-outline:hsl(204, 32%, 15%);
|
|
579
|
-
--t-fill-color-button-interaction-outline-hover:hsl(204, 39%, 17%);
|
|
580
|
-
--t-fill-color-button-interaction-outline-active:hsl(205, 45%, 18%);
|
|
581
|
-
--t-fill-color-button-interaction-outline-disabled:hsl(0, 0%, 12%);
|
|
582
|
-
--t-fill-color-button-interaction-ghost:hsla(0, 0%, 0%, 0);
|
|
583
|
-
--t-fill-color-button-interaction-ghost-hover:hsl(204, 32%, 15%);
|
|
584
|
-
--t-fill-color-button-interaction-ghost-active:hsl(204, 39%, 17%);
|
|
585
|
-
--t-fill-color-button-interaction-ghost-disabled:hsla(0, 0%, 0%, 0);
|
|
586
|
-
--t-fill-color-button-delete-solid:hsl(8, 60%, 40%);
|
|
587
|
-
--t-fill-color-button-delete-solid-active:hsl(8, 60%, 47%);
|
|
588
|
-
--t-fill-color-button-delete-solid-disabled:hsl(0, 0%, 12%);
|
|
589
|
-
--t-fill-color-button-delete-outline:hsl(8, 20%, 16%);
|
|
590
|
-
--t-fill-color-button-delete-outline-hover:hsl(9, 24%, 17%);
|
|
591
|
-
--t-fill-color-button-delete-outline-active:hsl(9, 29%, 19%);
|
|
592
|
-
--t-fill-color-button-delete-outline-disabled:hsl(0, 0%, 12%);
|
|
593
|
-
--t-fill-color-button-delete-ghost:hsla(0, 0%, 0%, 0);
|
|
594
|
-
--t-fill-color-button-delete-ghost-hover:hsl(8, 20%, 16%);
|
|
595
|
-
--t-fill-color-button-delete-ghost-active:hsl(9, 24%, 17%);
|
|
596
|
-
--t-fill-color-button-delete-ghost-disabled:hsla(0, 0%, 0%, 0);
|
|
597
|
-
--t-fill-color-button-pill:hsl(0, 0%, 18%);
|
|
598
|
-
--t-fill-color-button-pill-hover:hsl(0, 0%, 21%);
|
|
599
|
-
--t-fill-color-button-pill-active:hsl(0, 0%, 21%);
|
|
600
|
-
--t-fill-color-button-pill-disabled:hsl(0, 0%, 18%);
|
|
601
|
-
--t-fill-color-transparency-light-010:hsla(0, 0%, 0%, 0.1);
|
|
602
|
-
--t-fill-color-transparency-light-020:hsla(0, 0%, 0%, 0.2);
|
|
603
|
-
--t-fill-color-transparency-light-030:hsla(0, 0%, 0%, 0.3);
|
|
604
|
-
--t-fill-color-transparency-light-040:hsla(0, 0%, 0%, 0.4);
|
|
605
|
-
--t-fill-color-transparency-light-050:hsla(0, 0%, 0%, 0.5);
|
|
606
|
-
--t-fill-color-transparency-light-060:hsla(0, 0%, 0%, 0.6);
|
|
607
|
-
--t-fill-color-transparency-light-070:hsla(0, 0%, 0%, 0.7);
|
|
608
|
-
--t-fill-color-transparency-light-080:hsla(0, 0%, 0%, 0.8);
|
|
609
|
-
--t-fill-color-transparency-light-090:hsla(0, 0%, 0%, 0.9);
|
|
610
|
-
--t-fill-color-transparency-dark-010:hsla(0, 0%, 100%, 0.1);
|
|
611
|
-
--t-fill-color-transparency-dark-020:hsla(0, 0%, 100%, 0.2);
|
|
612
|
-
--t-fill-color-transparency-dark-030:hsla(0, 0%, 100%, 0.3);
|
|
613
|
-
--t-fill-color-transparency-dark-040:hsla(0, 0%, 100%, 0.4);
|
|
614
|
-
--t-fill-color-transparency-dark-050:hsla(0, 0%, 100%, 0.5);
|
|
615
|
-
--t-fill-color-transparency-dark-060:hsla(0, 0%, 100%, 0.6);
|
|
616
|
-
--t-fill-color-transparency-dark-070:hsla(0, 0%, 100%, 0.7);
|
|
617
|
-
--t-fill-color-transparency-dark-080:hsla(0, 0%, 100%, 0.8);
|
|
618
|
-
--t-fill-color-transparency-dark-090:hsla(0, 0%, 100%, 0.9);
|
|
619
|
-
--t-surface-color-card:hsl(0, 0%, 12%);
|
|
620
|
-
--t-surface-color-canvas:hsl(0, 0%, 10%);
|
|
621
|
-
--t-border-color:hsl(0, 0%, 21%);
|
|
622
|
-
--t-border-color-dark:hsl(0, 0%, 25%);
|
|
623
|
-
--t-border-color-darker:hsl(0, 0%, 33%);
|
|
624
|
-
--t-border-color-darkest:hsl(0, 0%, 38%);
|
|
625
|
-
--t-border-color-disabled:hsl(0, 0%, 21%);
|
|
626
|
-
--t-border-color-dim:hsl(0, 0%, 16%);
|
|
627
|
-
--t-border-color-white:hsl(0, 0%, 12%);
|
|
628
|
-
--t-border-color-status-neutral:hsl(0, 0%, 38%);
|
|
629
|
-
--t-border-color-status-info:hsl(204, 100%, 35%);
|
|
630
|
-
--t-border-color-button-neutral:hsl(0, 0%, 19%);
|
|
631
|
-
--t-border-color-button-info:hsla(204, 100%, 40%, 0.25);
|
|
632
|
-
--t-border-color-button-create:hsla(96, 57%, 33%, 0.25);
|
|
633
|
-
--t-border-color-button-delete:hsla(8, 60%, 47%, 0.25);
|
|
634
|
-
--t-border-color-control-neutral:hsl(0, 0%, 33%);
|
|
635
|
-
--t-border-color-control-info:hsl(204, 100%, 35%);
|
|
636
|
-
--t-border-color-control-disabled:hsl(0, 0%, 21%);
|
|
637
|
-
--t-shadow-overflow-color:hsla(0, 0%, 0%, 0.6);
|
|
638
|
-
}
|
|
639
|
-
|
|
640
640
|
@media (prefers-color-scheme: dark){
|
|
641
641
|
:root[data-color-mode="system"]{
|
|
642
642
|
color-scheme:dark;
|