@flux-ui/visuals 0.0.0
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/README.md +32 -0
- package/dist/component/FluxVisualAnimatedColors.vue.d.ts +10 -0
- package/dist/component/FluxVisualAttention.vue.d.ts +40 -0
- package/dist/component/FluxVisualBorderBeam.vue.d.ts +31 -0
- package/dist/component/FluxVisualBorderShine.vue.d.ts +53 -0
- package/dist/component/FluxVisualDotPattern.vue.d.ts +11 -0
- package/dist/component/FluxVisualFlickeringGrid.vue.d.ts +10 -0
- package/dist/component/FluxVisualGridPattern.vue.d.ts +10 -0
- package/dist/component/FluxVisualHighlighter.vue.d.ts +36 -0
- package/dist/component/FluxVisualHighlighterGroup.vue.d.ts +13 -0
- package/dist/component/FluxVisualNoise.vue.d.ts +9 -0
- package/dist/component/FluxVisualNumberFlow.vue.d.ts +14 -0
- package/dist/component/FluxVisualPing.vue.d.ts +8 -0
- package/dist/component/FluxVisualSlotText.vue.d.ts +41 -0
- package/dist/component/FluxVisualTextScramble.vue.d.ts +20 -0
- package/dist/component/FluxVisualTextShimmer.vue.d.ts +18 -0
- package/dist/component/index.d.ts +15 -0
- package/dist/composable/private/index.d.ts +2 -0
- package/dist/composable/private/useBorderBeamPulse.d.ts +21 -0
- package/dist/composable/private/useHighlighterGroup.d.ts +51 -0
- package/dist/index.css +1110 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +12320 -0
- package/dist/index.js.map +1 -0
- package/dist/types.d.ts +13 -0
- package/package.json +71 -0
- package/src/component/FluxVisualAnimatedColors.vue +187 -0
- package/src/component/FluxVisualAttention.vue +86 -0
- package/src/component/FluxVisualBorderBeam.vue +171 -0
- package/src/component/FluxVisualBorderShine.vue +36 -0
- package/src/component/FluxVisualDotPattern.vue +119 -0
- package/src/component/FluxVisualFlickeringGrid.vue +159 -0
- package/src/component/FluxVisualGridPattern.vue +128 -0
- package/src/component/FluxVisualHighlighter.vue +217 -0
- package/src/component/FluxVisualHighlighterGroup.vue +20 -0
- package/src/component/FluxVisualNoise.vue +31 -0
- package/src/component/FluxVisualNumberFlow.vue +235 -0
- package/src/component/FluxVisualPing.vue +26 -0
- package/src/component/FluxVisualSlotText.vue +457 -0
- package/src/component/FluxVisualTextScramble.vue +168 -0
- package/src/component/FluxVisualTextShimmer.vue +34 -0
- package/src/component/index.ts +15 -0
- package/src/composable/private/index.ts +2 -0
- package/src/composable/private/useBorderBeamPulse.ts +203 -0
- package/src/composable/private/useHighlighterGroup.ts +162 -0
- package/src/css/component/Attention.module.scss +104 -0
- package/src/css/component/BorderBeam.module.scss +1178 -0
- package/src/css/component/Highlighter.module.scss +7 -0
- package/src/css/component/Noise.module.scss +80 -0
- package/src/css/component/NumberFlow.module.scss +5 -0
- package/src/css/component/PatternGlow.module.scss +19 -0
- package/src/css/component/Ping.module.scss +44 -0
- package/src/css/component/SlotText.module.scss +43 -0
- package/src/css/component/TextScramble.module.scss +5 -0
- package/src/css/component/TextShimmer.module.scss +54 -0
- package/src/css/component/Visual.module.scss +71 -0
- package/src/index.ts +1 -0
- package/src/types.d.ts +13 -0
|
@@ -0,0 +1,1178 @@
|
|
|
1
|
+
@use 'sass:list';
|
|
2
|
+
@use 'sass:map';
|
|
3
|
+
@use 'sass:math';
|
|
4
|
+
@use 'sass:string';
|
|
5
|
+
|
|
6
|
+
@property --beam-angle {
|
|
7
|
+
syntax: '<angle>';
|
|
8
|
+
initial-value: 0deg;
|
|
9
|
+
inherits: true;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
@property --beam-hue {
|
|
13
|
+
syntax: '<angle>';
|
|
14
|
+
initial-value: 0deg;
|
|
15
|
+
inherits: true;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
@property --beam-opacity {
|
|
19
|
+
syntax: '<number>';
|
|
20
|
+
initial-value: 0;
|
|
21
|
+
inherits: true;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
@property --beam-x {
|
|
25
|
+
syntax: '<number>';
|
|
26
|
+
initial-value: 0;
|
|
27
|
+
inherits: true;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
@property --beam-w {
|
|
31
|
+
syntax: '<number>';
|
|
32
|
+
initial-value: 1;
|
|
33
|
+
inherits: true;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
@property --beam-h {
|
|
37
|
+
syntax: '<number>';
|
|
38
|
+
initial-value: 1;
|
|
39
|
+
inherits: true;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
@property --beam-edge {
|
|
43
|
+
syntax: '<number>';
|
|
44
|
+
initial-value: 1;
|
|
45
|
+
inherits: true;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
@property --beam-spike {
|
|
49
|
+
syntax: '<number>';
|
|
50
|
+
initial-value: 1;
|
|
51
|
+
inherits: true;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
@property --beam-spike2 {
|
|
55
|
+
syntax: '<number>';
|
|
56
|
+
initial-value: 1;
|
|
57
|
+
inherits: true;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
@each $name in (bw1, bh1, bw2, bh2, bw3, bh3, bgh, bop-tl, bop-tr, bop-bl, bop-br) {
|
|
61
|
+
@property --beam-#{$name} {
|
|
62
|
+
syntax: '<number>';
|
|
63
|
+
initial-value: 1;
|
|
64
|
+
inherits: true;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
@each $name in (bx1, by1, bx2, by2, bx3, by3) {
|
|
69
|
+
@property --beam-#{$name} {
|
|
70
|
+
syntax: '<length>';
|
|
71
|
+
initial-value: 0px;
|
|
72
|
+
inherits: true;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/*
|
|
77
|
+
* Palette data, ported from github.com/Jakubantalik/border-beam. Geometry is
|
|
78
|
+
* shared between palettes; only the colors differ. The ring geometry doubles as
|
|
79
|
+
* the pulse perimeter, where each blob is assigned to a breathing size region
|
|
80
|
+
* (1-3) and an opacity quadrant (tl/tr/bl/br).
|
|
81
|
+
*/
|
|
82
|
+
|
|
83
|
+
$ring-geometry: (
|
|
84
|
+
(x: 33%, y: -7.4%, w: 70, h: 40, region: 1, quad: tl),
|
|
85
|
+
(x: 12%, y: -5%, w: 60, h: 35, region: 2, quad: tl),
|
|
86
|
+
(x: 2.1%, y: 68.3%, w: 40, h: 70, region: 3, quad: bl),
|
|
87
|
+
(x: 2.1%, y: 68.3%, w: 20, h: 35, region: 1, quad: bl),
|
|
88
|
+
(x: 74.4%, y: 100%, w: 180, h: 32, region: 2, quad: br),
|
|
89
|
+
(x: 55%, y: 100%, w: 85, h: 26, region: 3, quad: br),
|
|
90
|
+
(x: 93.9%, y: 0%, w: 74, h: 32, region: 1, quad: tr),
|
|
91
|
+
(x: 100%, y: 27.1%, w: 26, h: 42, region: 2, quad: tr),
|
|
92
|
+
(x: 100%, y: 27.1%, w: 52, h: 48, region: 3, quad: tr)
|
|
93
|
+
);
|
|
94
|
+
|
|
95
|
+
$ring-colors: (
|
|
96
|
+
colorful: ((255, 50, 100), (40, 140, 255), (50, 200, 80), (30, 185, 170), (100, 70, 255), (40, 140, 255), (255, 120, 40), (240, 50, 180), (180, 40, 240)),
|
|
97
|
+
mono: ((180, 180, 180), (140, 140, 140), (160, 160, 160), (130, 130, 130), (170, 170, 170), (150, 150, 150), (190, 190, 190), (145, 145, 145), (165, 165, 165)),
|
|
98
|
+
ocean: ((100, 80, 220), (60, 120, 255), (80, 100, 200), (50, 140, 220), (120, 80, 255), (70, 130, 255), (140, 100, 240), (90, 110, 230), (130, 70, 255)),
|
|
99
|
+
sunset: ((255, 80, 50), (255, 160, 40), (255, 120, 60), (255, 200, 50), (255, 100, 80), (255, 180, 60), (255, 60, 60), (255, 140, 50), (255, 90, 70))
|
|
100
|
+
);
|
|
101
|
+
|
|
102
|
+
$sm-geometry: (
|
|
103
|
+
(x: 2%, y: 68%, w: 9, h: 18),
|
|
104
|
+
(x: 2%, y: 68%, w: 4, h: 8),
|
|
105
|
+
(x: 72%, y: -3%, w: 59, h: 9),
|
|
106
|
+
(x: 74%, y: 100%, w: 42, h: 7),
|
|
107
|
+
(x: 100%, y: 27%, w: 10, h: 17),
|
|
108
|
+
(x: 100%, y: 27%, w: 10, h: 18),
|
|
109
|
+
(x: 100%, y: 27%, w: 5, h: 10),
|
|
110
|
+
(x: 100%, y: 27%, w: 11, h: 12)
|
|
111
|
+
);
|
|
112
|
+
|
|
113
|
+
$sm-colors: (
|
|
114
|
+
colorful: ((50, 200, 80), (30, 185, 170), (255, 120, 40), (100, 70, 255), (240, 50, 180), (180, 40, 240), (40, 140, 255), (255, 50, 100)),
|
|
115
|
+
mono: ((160, 160, 160), (140, 140, 140), (180, 180, 180), (150, 150, 150), (170, 170, 170), (155, 155, 155), (145, 145, 145), (165, 165, 165)),
|
|
116
|
+
ocean: ((60, 140, 200), (50, 120, 180), (100, 80, 220), (80, 100, 255), (120, 70, 240), (90, 80, 220), (70, 110, 255), (110, 90, 230)),
|
|
117
|
+
sunset: ((255, 180, 50), (255, 150, 40), (255, 80, 60), (255, 100, 80), (255, 60, 80), (255, 120, 60), (255, 200, 50), (255, 90, 70))
|
|
118
|
+
);
|
|
119
|
+
|
|
120
|
+
$sm-inner-alphas: (
|
|
121
|
+
colorful: (.5, .45, .35, .35, .3, .4, .3, .3),
|
|
122
|
+
mono: (.25, .22, .17, .17, .15, .2, .15, .15),
|
|
123
|
+
ocean: (.5, .45, .35, .35, .3, .4, .3, .3),
|
|
124
|
+
sunset: (.5, .45, .35, .35, .3, .4, .3, .3)
|
|
125
|
+
);
|
|
126
|
+
|
|
127
|
+
$line-geometry-dark: (
|
|
128
|
+
(w: 36, h: 36, ox: 0, oy: 2),
|
|
129
|
+
(w: 30, h: 32, ox: 39, oy: 0),
|
|
130
|
+
(w: 33, h: 28, ox: -36, oy: 2),
|
|
131
|
+
(w: 29, h: 34, ox: -54, oy: 0),
|
|
132
|
+
(w: 27, h: 30, ox: 51, oy: -1),
|
|
133
|
+
(w: 36, h: 24, ox: 21, oy: 1),
|
|
134
|
+
(w: 30, h: 22, ox: -21, oy: 0),
|
|
135
|
+
(w: 25, h: 28, ox: 66, oy: 1),
|
|
136
|
+
(w: 23, h: 30, ox: -66, oy: -1)
|
|
137
|
+
);
|
|
138
|
+
|
|
139
|
+
$line-geometry-light: (
|
|
140
|
+
(w: 45, h: 36, ox: 0, oy: 2),
|
|
141
|
+
(w: 35, h: 32, ox: 65, oy: 0),
|
|
142
|
+
(w: 40, h: 28, ox: -60, oy: 2),
|
|
143
|
+
(w: 35, h: 34, ox: -90, oy: 0),
|
|
144
|
+
(w: 38, h: 30, ox: 85, oy: -1),
|
|
145
|
+
(w: 50, h: 24, ox: 35, oy: 1),
|
|
146
|
+
(w: 40, h: 22, ox: -35, oy: 0),
|
|
147
|
+
(w: 35, h: 28, ox: 110, oy: 1),
|
|
148
|
+
(w: 30, h: 30, ox: -110, oy: -1)
|
|
149
|
+
);
|
|
150
|
+
|
|
151
|
+
$line-colors: (
|
|
152
|
+
colorful: (
|
|
153
|
+
dark: ((255, 50, 100), (40, 180, 220), (50, 200, 80), (180, 40, 240), (255, 160, 30), (100, 70, 255), (40, 140, 255), (240, 50, 180), (30, 185, 170)),
|
|
154
|
+
light: ((255, 50, 100), (40, 140, 255), (50, 200, 80), (180, 40, 240), (30, 185, 170), (100, 70, 255), (40, 140, 255), (255, 120, 40), (240, 50, 180))
|
|
155
|
+
),
|
|
156
|
+
mono: (
|
|
157
|
+
dark: ((200, 200, 200), (170, 170, 170), (155, 155, 155), (185, 185, 185), (165, 165, 165), (180, 180, 180), (160, 160, 160), (175, 175, 175), (190, 190, 190)),
|
|
158
|
+
light: ((100, 100, 100), (80, 80, 80), (90, 90, 90), (70, 70, 70), (85, 85, 85), (95, 95, 95), (75, 75, 75), (105, 105, 105), (65, 65, 65))
|
|
159
|
+
),
|
|
160
|
+
ocean: (
|
|
161
|
+
dark: ((100, 80, 220), (60, 120, 255), (80, 100, 200), (130, 70, 255), (70, 130, 255), (120, 80, 255), (90, 110, 230), (110, 90, 240), (140, 100, 255)),
|
|
162
|
+
light: ((80, 60, 200), (50, 100, 220), (70, 90, 190), (110, 60, 220), (60, 110, 230), (100, 70, 240), (80, 100, 210), (90, 80, 225), (120, 90, 245))
|
|
163
|
+
),
|
|
164
|
+
sunset: (
|
|
165
|
+
dark: ((255, 100, 60), (255, 180, 50), (255, 140, 70), (255, 80, 80), (255, 200, 60), (255, 120, 50), (255, 160, 80), (255, 90, 60), (255, 70, 70)),
|
|
166
|
+
light: ((220, 80, 40), (230, 150, 30), (210, 110, 50), (200, 60, 60), (220, 170, 40), (210, 100, 30), (230, 130, 60), (190, 70, 50), (180, 50, 50))
|
|
167
|
+
)
|
|
168
|
+
);
|
|
169
|
+
|
|
170
|
+
$line-inner-geometry: (
|
|
171
|
+
(w: 33, h: 30, ox: 0, oy: 0),
|
|
172
|
+
(w: 24, h: 26, ox: 39, oy: -3),
|
|
173
|
+
(w: 27, h: 24, ox: -36, oy: 0),
|
|
174
|
+
(w: 23, h: 28, ox: -54, oy: -2),
|
|
175
|
+
(w: 24, h: 24, ox: 51, oy: -1),
|
|
176
|
+
(w: 30, h: 20, ox: 21, oy: 0),
|
|
177
|
+
(w: 25, h: 18, ox: -21, oy: -2),
|
|
178
|
+
(w: 21, h: 24, ox: 66, oy: 0),
|
|
179
|
+
(w: 18, h: 26, ox: -66, oy: -1)
|
|
180
|
+
);
|
|
181
|
+
|
|
182
|
+
$line-inner-colors: (
|
|
183
|
+
colorful: ((255, 50, 100), (40, 180, 220), (50, 200, 80), (180, 40, 240), (255, 160, 30), (100, 70, 255), (40, 140, 255), (240, 50, 180), (30, 185, 170)),
|
|
184
|
+
mono: ((200, 200, 200), (170, 170, 170), (155, 155, 155), (185, 185, 185), (165, 165, 165), (180, 180, 180), (160, 160, 160), (175, 175, 175), (190, 190, 190)),
|
|
185
|
+
ocean: ((100, 80, 220), (60, 120, 255), (80, 100, 200), (130, 70, 255), (70, 130, 255), (120, 80, 255), (90, 110, 230), (110, 90, 240), (140, 100, 255)),
|
|
186
|
+
sunset: ((255, 100, 60), (255, 180, 50), (255, 140, 70), (255, 80, 80), (255, 200, 60), (255, 120, 50), (255, 160, 80), (255, 90, 60), (255, 70, 70))
|
|
187
|
+
);
|
|
188
|
+
|
|
189
|
+
$line-inner-alphas: (.48, .42, .48, .42, .5, .45, .4, .45, .52);
|
|
190
|
+
|
|
191
|
+
$line-spikes: (
|
|
192
|
+
colorful: (
|
|
193
|
+
dark: (primary: ((255, 60, 80), 1), secondary: ((40, 190, 180), .98)),
|
|
194
|
+
light: (primary: ((200, 30, 60), 1), secondary: ((20, 150, 140), 1))
|
|
195
|
+
),
|
|
196
|
+
mono: (
|
|
197
|
+
dark: (primary: ((200, 200, 200), 1), secondary: ((170, 170, 170), 1)),
|
|
198
|
+
light: (primary: ((80, 80, 80), 1), secondary: ((120, 120, 120), 1))
|
|
199
|
+
),
|
|
200
|
+
ocean: (
|
|
201
|
+
dark: (primary: ((100, 120, 255), 1), secondary: ((130, 100, 220), .98)),
|
|
202
|
+
light: (primary: ((60, 60, 180), 1), secondary: ((80, 100, 200), 1))
|
|
203
|
+
),
|
|
204
|
+
sunset: (
|
|
205
|
+
dark: (primary: ((255, 140, 80), 1), secondary: ((255, 100, 60), .98)),
|
|
206
|
+
light: (primary: ((200, 80, 40), 1), secondary: ((220, 120, 30), 1))
|
|
207
|
+
)
|
|
208
|
+
);
|
|
209
|
+
|
|
210
|
+
$line-bloom-spikes: (
|
|
211
|
+
colorful: (
|
|
212
|
+
dark: ((((100, 70, 255), 1), ((100, 70, 255), 1)), (((255, 170, 40), .59), ((255, 170, 40), .29)), (((50, 200, 100), 1), ((50, 200, 100), 1)), (((200, 50, 240), .91), ((200, 50, 240), .45)), (((40, 140, 255), 1), ((40, 140, 255), 1))),
|
|
213
|
+
light: ((((80, 50, 200), 1), ((80, 50, 200), .8)), (((210, 130, 0), .7), ((210, 130, 0), .46)), (((30, 160, 70), 1), ((30, 160, 70), .82)), (((160, 30, 190), 1), ((160, 30, 190), .7)), (((30, 100, 200), 1), ((30, 100, 200), .78)))
|
|
214
|
+
),
|
|
215
|
+
mono: (
|
|
216
|
+
dark: ((((200, 200, 200), 1), ((200, 200, 200), 1)), (((180, 180, 180), .59), ((180, 180, 180), .29)), (((190, 190, 190), 1), ((190, 190, 190), 1)), (((170, 170, 170), .91), ((170, 170, 170), .45)), (((185, 185, 185), 1), ((185, 185, 185), 1))),
|
|
217
|
+
light: ((((80, 80, 80), 1), ((80, 80, 80), .8)), (((100, 100, 100), .7), ((100, 100, 100), .46)), (((70, 70, 70), 1), ((70, 70, 70), .82)), (((90, 90, 90), 1), ((90, 90, 90), .7)), (((85, 85, 85), 1), ((85, 85, 85), .78)))
|
|
218
|
+
),
|
|
219
|
+
ocean: (
|
|
220
|
+
dark: ((((100, 80, 255), 1), ((100, 80, 255), 1)), (((80, 130, 220), .59), ((80, 130, 220), .29)), (((60, 100, 255), 1), ((60, 100, 255), 1)), (((90, 120, 200), .91), ((90, 120, 200), .45)), (((120, 90, 255), 1), ((120, 90, 255), 1))),
|
|
221
|
+
light: ((((50, 40, 180), 1), ((50, 40, 180), .8)), (((40, 80, 200), .7), ((40, 80, 200), .46)), (((30, 50, 190), 1), ((30, 50, 190), .82)), (((60, 90, 180), 1), ((60, 90, 180), .7)), (((70, 60, 200), 1), ((70, 60, 200), .78)))
|
|
222
|
+
),
|
|
223
|
+
sunset: (
|
|
224
|
+
dark: ((((255, 100, 80), 1), ((255, 100, 80), 1)), (((255, 150, 80), .59), ((255, 150, 80), .29)), (((255, 80, 60), 1), ((255, 80, 60), 1)), (((255, 120, 50), .91), ((255, 120, 50), .45)), (((255, 140, 70), 1), ((255, 140, 70), 1))),
|
|
225
|
+
light: ((((200, 60, 30), 1), ((200, 60, 30), .8)), (((220, 100, 20), .7), ((220, 100, 20), .46)), (((180, 40, 20), 1), ((180, 40, 20), .82)), (((210, 80, 10), 1), ((210, 80, 10), .7)), (((190, 70, 30), 1), ((190, 70, 30), .78)))
|
|
226
|
+
)
|
|
227
|
+
);
|
|
228
|
+
|
|
229
|
+
$pulse-inner-sizes: ((65, 35), (55, 30), (35, 65), (15, 30), (173, 28), (80, 22), (69, 28), (22, 38), (47, 44));
|
|
230
|
+
|
|
231
|
+
$pulse-inner-bloom: (
|
|
232
|
+
(ci: 1, region: 1, quad: tl, w: 84, h: 48),
|
|
233
|
+
(ci: 2, region: 2, quad: tl, w: 72, h: 42),
|
|
234
|
+
(ci: 3, region: 3, quad: bl, w: 48, h: 84),
|
|
235
|
+
(ci: 5, region: 2, quad: br, w: 216, h: 38),
|
|
236
|
+
(ci: 6, region: 3, quad: br, w: 102, h: 31),
|
|
237
|
+
(ci: 7, region: 1, quad: tr, w: 89, h: 38),
|
|
238
|
+
(ci: 9, region: 3, quad: tr, w: 62, h: 58)
|
|
239
|
+
);
|
|
240
|
+
|
|
241
|
+
$pulse-outer-core: (
|
|
242
|
+
(ci: 1, region: 1, quad: tl, w: 80, h: 19, x: 27%, y: 0%),
|
|
243
|
+
(ci: 7, region: 2, quad: tr, w: 74, h: 11, x: 73%, y: -1%),
|
|
244
|
+
(ci: 8, region: 3, quad: tr, w: 15, h: 44, x: 100%, y: 33%),
|
|
245
|
+
(ci: 9, region: 1, quad: br, w: 19, h: 38, x: 101%, y: 72%),
|
|
246
|
+
(ci: 5, region: 2, quad: br, w: 84, h: 13, x: 67%, y: 100%),
|
|
247
|
+
(ci: 2, region: 3, quad: bl, w: 60, h: 21, x: 24%, y: 101%),
|
|
248
|
+
(ci: 3, region: 1, quad: bl, w: 17, h: 40, x: 0%, y: 60%),
|
|
249
|
+
(ci: 4, region: 2, quad: tl, w: 13, h: 32, x: -1%, y: 28%)
|
|
250
|
+
);
|
|
251
|
+
|
|
252
|
+
$pulse-outer-bloom: (
|
|
253
|
+
(ci: 1, region: 1, quad: tl, w: 110, h: 30, x: 27%, y: 3%),
|
|
254
|
+
(ci: 7, region: 2, quad: tr, w: 100, h: 20, x: 73%, y: 1%),
|
|
255
|
+
(ci: 8, region: 3, quad: tr, w: 26, h: 62, x: 100%, y: 33%),
|
|
256
|
+
(ci: 9, region: 1, quad: br, w: 30, h: 56, x: 101%, y: 72%),
|
|
257
|
+
(ci: 5, region: 2, quad: br, w: 120, h: 22, x: 67%, y: 99%),
|
|
258
|
+
(ci: 2, region: 3, quad: bl, w: 88, h: 32, x: 24%, y: 99%),
|
|
259
|
+
(ci: 3, region: 1, quad: bl, w: 28, h: 58, x: 0%, y: 60%)
|
|
260
|
+
);
|
|
261
|
+
|
|
262
|
+
@function rgb-str($c, $alpha: null) {
|
|
263
|
+
@if $alpha == null or $alpha == 1 {
|
|
264
|
+
@return string.unquote('rgb(#{list.nth($c, 1)}, #{list.nth($c, 2)}, #{list.nth($c, 3)})');
|
|
265
|
+
}
|
|
266
|
+
@return string.unquote('rgba(#{list.nth($c, 1)}, #{list.nth($c, 2)}, #{list.nth($c, 3)}, #{$alpha})');
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
@function spike-color($pair, $factor: 1) {
|
|
270
|
+
$alpha: math.div(math.round(list.nth($pair, 2) * $factor * 100), 100);
|
|
271
|
+
@return rgb-str(list.nth($pair, 1), $alpha);
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
@function offset-str($value) {
|
|
275
|
+
@if $value < 0 {
|
|
276
|
+
@return ' - #{math.abs($value)}px';
|
|
277
|
+
}
|
|
278
|
+
@return ' + #{$value}px';
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
// Static blobs around the perimeter (md & sm stroke/inner layers).
|
|
282
|
+
@function blobs($colors, $geometry, $alphas: null, $scale: 1) {
|
|
283
|
+
$grads: ();
|
|
284
|
+
@for $i from 1 through list.length($geometry) {
|
|
285
|
+
$g: list.nth($geometry, $i);
|
|
286
|
+
$alpha: null;
|
|
287
|
+
@if $alphas != null {
|
|
288
|
+
@if list.length($alphas) > 1 {
|
|
289
|
+
$alpha: list.nth($alphas, $i);
|
|
290
|
+
} @else {
|
|
291
|
+
$alpha: $alphas;
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
$w: math.round(map.get($g, w) * $scale);
|
|
295
|
+
$h: math.round(map.get($g, h) * $scale);
|
|
296
|
+
$grads: list.append($grads, string.unquote('radial-gradient(ellipse #{$w}px #{$h}px at #{map.get($g, x)} #{map.get($g, y)}, #{rgb-str(list.nth($colors, $i), $alpha)}, transparent)'), comma);
|
|
297
|
+
}
|
|
298
|
+
@return $grads;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
// Traveling blobs along the bottom edge (line stroke/inner layers).
|
|
302
|
+
@function line-blobs($colors, $geometry, $alphas: null) {
|
|
303
|
+
$grads: ();
|
|
304
|
+
@for $i from 1 through list.length($geometry) {
|
|
305
|
+
$g: list.nth($geometry, $i);
|
|
306
|
+
$alpha: null;
|
|
307
|
+
@if $alphas != null {
|
|
308
|
+
$alpha: list.nth($alphas, $i);
|
|
309
|
+
}
|
|
310
|
+
$grads: list.append($grads, string.unquote('radial-gradient(ellipse calc(#{map.get($g, w)}px * var(--beam-w)) calc(#{map.get($g, h)}px * var(--beam-h)) at calc(var(--beam-x) * 100%#{offset-str(map.get($g, ox))}) calc(100%#{offset-str(map.get($g, oy))}), #{rgb-str(list.nth($colors, $i), $alpha)}, transparent)'), comma);
|
|
311
|
+
}
|
|
312
|
+
@return $grads;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
// Breathing blobs whose size, drift and opacity are driven from JS (pulse layers).
|
|
316
|
+
@function pulse-blobs($entries) {
|
|
317
|
+
$grads: ();
|
|
318
|
+
@each $e in $entries {
|
|
319
|
+
$r: map.get($e, region);
|
|
320
|
+
$size: 'calc(#{map.get($e, w)}px * var(--beam-bw#{$r}) * var(--beam-glow-sx, 1)) calc(#{map.get($e, h)}px * var(--beam-bh#{$r}) * var(--beam-bgh) * var(--beam-glow-sy, 1))';
|
|
321
|
+
$at: 'calc(#{map.get($e, x)} + var(--beam-bx#{$r})) calc(#{map.get($e, y)} + var(--beam-by#{$r}))';
|
|
322
|
+
$color: 'rgba(#{list.nth(map.get($e, c), 1)}, #{list.nth(map.get($e, c), 2)}, #{list.nth(map.get($e, c), 3)}, var(--beam-bop-#{map.get($e, quad)}))';
|
|
323
|
+
$grads: list.append($grads, string.unquote('radial-gradient(ellipse #{$size} at #{$at}, #{$color}, transparent)'), comma);
|
|
324
|
+
}
|
|
325
|
+
@return $grads;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
// Frozen variant of the pulse blobs: literal sizes/positions with the time-average
|
|
329
|
+
// alpha, so the heavily blurred bloom bitmap is painted once and cached instead of
|
|
330
|
+
// being re-rasterized every frame.
|
|
331
|
+
@function pulse-blobs-frozen($entries) {
|
|
332
|
+
$grads: ();
|
|
333
|
+
@each $e in $entries {
|
|
334
|
+
$size: 'calc(#{map.get($e, w)}px * var(--beam-glow-sx, 1)) calc(#{map.get($e, h)}px * var(--beam-glow-sy, 1))';
|
|
335
|
+
$color: 'rgba(#{list.nth(map.get($e, c), 1)}, #{list.nth(map.get($e, c), 2)}, #{list.nth(map.get($e, c), 3)}, var(--beam-pulse-frozen))';
|
|
336
|
+
$grads: list.append($grads, string.unquote('radial-gradient(ellipse #{$size} at #{map.get($e, x)} #{map.get($e, y)}, #{$color}, transparent)'), comma);
|
|
337
|
+
}
|
|
338
|
+
@return $grads;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
// The 9-blob pulse perimeter, with palette geometry and colors.
|
|
342
|
+
@function pulse-ring($palette) {
|
|
343
|
+
$entries: ();
|
|
344
|
+
@for $i from 1 through list.length($ring-geometry) {
|
|
345
|
+
$entries: list.append($entries, map.merge(list.nth($ring-geometry, $i), (c: list.nth(map.get($ring-colors, $palette), $i))), comma);
|
|
346
|
+
}
|
|
347
|
+
@return $entries;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
// Same perimeter with the smaller inner sizes.
|
|
351
|
+
@function pulse-ring-resized($palette) {
|
|
352
|
+
$ring: pulse-ring($palette);
|
|
353
|
+
$entries: ();
|
|
354
|
+
@for $i from 1 through list.length($ring) {
|
|
355
|
+
$size: list.nth($pulse-inner-sizes, $i);
|
|
356
|
+
$entries: list.append($entries, map.merge(list.nth($ring, $i), (w: list.nth($size, 1), h: list.nth($size, 2))), comma);
|
|
357
|
+
}
|
|
358
|
+
@return $entries;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
// Resolve a gradient table (ci references the palette ring) to emit-ready entries.
|
|
362
|
+
@function pulse-table($palette, $table) {
|
|
363
|
+
$ring: pulse-ring($palette);
|
|
364
|
+
$entries: ();
|
|
365
|
+
@each $t in $table {
|
|
366
|
+
$src: list.nth($ring, map.get($t, ci));
|
|
367
|
+
$x: map.get($src, x);
|
|
368
|
+
$y: map.get($src, y);
|
|
369
|
+
@if map.has-key($t, x) {
|
|
370
|
+
$x: map.get($t, x);
|
|
371
|
+
}
|
|
372
|
+
@if map.has-key($t, y) {
|
|
373
|
+
$y: map.get($t, y);
|
|
374
|
+
}
|
|
375
|
+
$entry: (
|
|
376
|
+
c: map.get($src, c),
|
|
377
|
+
x: $x,
|
|
378
|
+
y: $y,
|
|
379
|
+
w: map.get($t, w),
|
|
380
|
+
h: map.get($t, h),
|
|
381
|
+
region: map.get($t, region),
|
|
382
|
+
quad: map.get($t, quad)
|
|
383
|
+
);
|
|
384
|
+
$entries: list.append($entries, $entry, comma);
|
|
385
|
+
}
|
|
386
|
+
@return $entries;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
// The desynced spike/glow stack at the bottom edge (line bloom layer).
|
|
390
|
+
@function line-bloom($palette, $theme) {
|
|
391
|
+
$is-dark: $theme == dark;
|
|
392
|
+
$is-mono: $palette == mono;
|
|
393
|
+
$spikes-def: map.get($line-spikes, $palette, $theme);
|
|
394
|
+
$primary: map.get($spikes-def, primary);
|
|
395
|
+
$secondary: map.get($spikes-def, secondary);
|
|
396
|
+
$pairs: map.get($line-bloom-spikes, $palette, $theme);
|
|
397
|
+
|
|
398
|
+
// Mono uses uniform gray, so thin spikes at full opacity look like harsh
|
|
399
|
+
// bars. Attenuate the opacity and widen the thin gradients so they appear
|
|
400
|
+
// as soft glows instead.
|
|
401
|
+
$sc1: spike-color($primary);
|
|
402
|
+
$sc2: spike-color($secondary);
|
|
403
|
+
$sc1-mid: $sc1;
|
|
404
|
+
$sc2-mid: rgb-str(list.nth($secondary, 1), .49);
|
|
405
|
+
$thin-w1: .8px;
|
|
406
|
+
$thin-w2: 2px;
|
|
407
|
+
$thin-w3: 1.2px;
|
|
408
|
+
$thin-w4: .6px;
|
|
409
|
+
$thin-h1: 92px;
|
|
410
|
+
$thin-h2: 72px;
|
|
411
|
+
$thin-h3: 85px;
|
|
412
|
+
$thin-h4: 60px;
|
|
413
|
+
$att: 1;
|
|
414
|
+
|
|
415
|
+
@if not $is-dark {
|
|
416
|
+
$sc1-mid: rgb-str(list.nth($primary, 1), .85);
|
|
417
|
+
$sc2-mid: rgb-str(list.nth($secondary, 1), .7);
|
|
418
|
+
$thin-w4: 1px;
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
@if $is-mono {
|
|
422
|
+
$sc1: spike-color($primary, .14);
|
|
423
|
+
$sc2: spike-color($secondary, .12);
|
|
424
|
+
$thin-w1: 12px;
|
|
425
|
+
$thin-w2: 14px;
|
|
426
|
+
$thin-w3: 12px;
|
|
427
|
+
$thin-w4: 10px;
|
|
428
|
+
|
|
429
|
+
// The light theme widens the last thin spike further for mono.
|
|
430
|
+
@if not $is-dark {
|
|
431
|
+
$thin-w4: 12px;
|
|
432
|
+
}
|
|
433
|
+
$thin-h1: 42px;
|
|
434
|
+
$thin-h2: 38px;
|
|
435
|
+
$thin-h3: 40px;
|
|
436
|
+
$thin-h4: 32px;
|
|
437
|
+
$att: .14;
|
|
438
|
+
|
|
439
|
+
@if $is-dark {
|
|
440
|
+
$sc1-mid: spike-color($primary, .09);
|
|
441
|
+
$sc2-mid: rgb-str(list.nth($secondary, 1), .06);
|
|
442
|
+
} @else {
|
|
443
|
+
$sc1-mid: spike-color($primary, .11);
|
|
444
|
+
$sc2-mid: spike-color($secondary, .09);
|
|
445
|
+
}
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
$att2: $att;
|
|
449
|
+
@if $is-mono {
|
|
450
|
+
$att2: $att * .7;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
$colors1: ();
|
|
454
|
+
$colors2: ();
|
|
455
|
+
@each $pair in $pairs {
|
|
456
|
+
$colors1: list.append($colors1, spike-color(list.nth($pair, 1), $att), comma);
|
|
457
|
+
$colors2: list.append($colors2, spike-color(list.nth($pair, 2), $att2), comma);
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
$grads: (
|
|
461
|
+
string.unquote('radial-gradient(ellipse calc(#{$thin-w1} * var(--beam-spike)) calc(#{$thin-h1} * var(--beam-h)) at 8% calc(100% - 2px), #{$sc1}, #{$sc1-mid} 30%, transparent 88%)'),
|
|
462
|
+
string.unquote('radial-gradient(ellipse calc(10px * var(--beam-spike2)) calc(35px * var(--beam-h)) at 22% calc(100% - 4px), #{$sc2}, #{$sc2-mid} 50%, transparent 95%)'),
|
|
463
|
+
string.unquote('radial-gradient(ellipse calc(#{$thin-w2} * (2 - var(--beam-spike))) calc(#{$thin-h2} * var(--beam-h)) at 36% calc(100% - 3px), #{list.nth($colors1, 1)}, #{list.nth($colors2, 1)} 40%, transparent 90%)'),
|
|
464
|
+
string.unquote('radial-gradient(ellipse calc(14px * var(--beam-spike2)) calc(28px * var(--beam-h)) at 50% calc(100% - 2px), #{list.nth($colors1, 2)}, #{list.nth($colors2, 2)} 55%, transparent 96%)'),
|
|
465
|
+
string.unquote('radial-gradient(ellipse calc(#{$thin-w3} * (2 - var(--beam-spike2))) calc(#{$thin-h3} * var(--beam-h)) at 64% calc(100% - 4px), #{list.nth($colors1, 3)}, #{list.nth($colors2, 3)} 35%, transparent 89%)'),
|
|
466
|
+
string.unquote('radial-gradient(ellipse calc(7px * var(--beam-spike)) calc(45px * var(--beam-h)) at 78% calc(100% - 2px), #{list.nth($colors1, 4)}, #{list.nth($colors2, 4)} 48%, transparent 94%)'),
|
|
467
|
+
string.unquote('radial-gradient(ellipse calc(#{$thin-w4} * (2 - var(--beam-spike))) calc(#{$thin-h4} * var(--beam-h)) at 92% calc(100% - 3px), #{list.nth($colors1, 5)}, #{list.nth($colors2, 5)} 42%, transparent 91%)')
|
|
468
|
+
);
|
|
469
|
+
|
|
470
|
+
@if $is-dark {
|
|
471
|
+
$dot-c: 'rgba(255, 255, 255, 1)';
|
|
472
|
+
$dot-20: 'rgba(255, 255, 255, 0.9)';
|
|
473
|
+
$dot-50: 'rgba(255, 255, 255, 0.5)';
|
|
474
|
+
$amb-c: 'rgba(255, 255, 255, 0.3)';
|
|
475
|
+
$amb-25: 'rgba(255, 255, 255, 0.12)';
|
|
476
|
+
$amb-55: 'rgba(255, 255, 255, 0.03)';
|
|
477
|
+
|
|
478
|
+
@if $is-mono {
|
|
479
|
+
$dot-c: 'rgba(255, 255, 255, 0.5)';
|
|
480
|
+
$dot-20: 'rgba(255, 255, 255, 0.45)';
|
|
481
|
+
$dot-50: 'rgba(255, 255, 255, 0.25)';
|
|
482
|
+
$amb-c: 'rgba(255, 255, 255, 0.15)';
|
|
483
|
+
$amb-25: 'rgba(255, 255, 255, 0.06)';
|
|
484
|
+
$amb-55: 'rgba(255, 255, 255, 0.015)';
|
|
485
|
+
}
|
|
486
|
+
$grads: list.append($grads, string.unquote('radial-gradient(ellipse calc(21px * var(--beam-spike)) calc(15px * var(--beam-spike2)) at calc(var(--beam-x) * 100%) calc(100% + 1px), #{$dot-c} 0%, #{$dot-20} 20%, #{$dot-50} 50%, transparent 100%)'), comma);
|
|
487
|
+
$grads: list.append($grads, string.unquote('radial-gradient(ellipse calc(42px * var(--beam-w)) calc(40px * var(--beam-h)) at calc(var(--beam-x) * 100%) 100%, #{$amb-c} 0%, #{$amb-25} 25%, #{$amb-55} 55%, transparent 80%)'), comma);
|
|
488
|
+
} @else {
|
|
489
|
+
$grads: list.append($grads, string.unquote('radial-gradient(ellipse calc(50px * var(--beam-w)) calc(32px * var(--beam-h)) at calc(var(--beam-x) * 100%) 100%, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.18) 30%, rgba(0, 0, 0, 0.03) 60%, transparent 85%)'), comma);
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
@return $grads;
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
// Gradients that reference animated custom properties (--beam-angle, --beam-x,
|
|
496
|
+
// --beam-w, ...) must be declared directly on the layer that paints them.
|
|
497
|
+
// Routing them through an intermediate custom property breaks per-frame
|
|
498
|
+
// updates of the dependent value in Chromium and WebKit, which makes the
|
|
499
|
+
// animation stutter.
|
|
500
|
+
$rotate-highlight-light: string.unquote('conic-gradient(from var(--beam-angle), transparent 0%, transparent 54%, rgba(0, 0, 0, 0.08) 57%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.4) 63%, rgba(0, 0, 0, 0.55) 66%, rgba(0, 0, 0, 0.4) 69%, rgba(0, 0, 0, 0.2) 72%, rgba(0, 0, 0, 0.08) 75%, transparent 78%, transparent 100%)');
|
|
501
|
+
$rotate-highlight-dark: string.unquote('conic-gradient(from var(--beam-angle), transparent 0%, transparent 54%, rgba(255, 255, 255, 0.1) 57%, rgba(255, 255, 255, 0.3) 60%, rgba(255, 255, 255, 0.6) 63%, rgba(255, 255, 255, 0.75) 66%, rgba(255, 255, 255, 0.6) 69%, rgba(255, 255, 255, 0.3) 72%, rgba(255, 255, 255, 0.1) 75%, transparent 78%, transparent 100%)');
|
|
502
|
+
$rotate-bloom-light: string.unquote('conic-gradient(from var(--beam-angle), transparent 0%, transparent 58%, rgba(0, 0, 0, 0.02) 62%, rgba(0, 0, 0, 0.08) 65%, rgba(0, 0, 0, 0.2) 67%, rgba(0, 0, 0, 0.4) 69%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.6) 70.5%, rgba(0, 0, 0, 0.4) 71.5%, rgba(0, 0, 0, 0.2) 73%, rgba(0, 0, 0, 0.08) 75%, rgba(0, 0, 0, 0.02) 78%, transparent 82%)');
|
|
503
|
+
$rotate-bloom-dark: string.unquote('conic-gradient(from var(--beam-angle), transparent 0%, transparent 58%, rgba(255, 255, 255, 0.03) 62%, rgba(255, 255, 255, 0.08) 65%, rgba(255, 255, 255, 0.2) 67%, rgba(255, 255, 255, 0.45) 69%, rgba(255, 255, 255, 0.85) 70%, rgba(255, 255, 255, 0.85) 70.5%, rgba(255, 255, 255, 0.45) 71.5%, rgba(255, 255, 255, 0.2) 73%, rgba(255, 255, 255, 0.08) 75%, rgba(255, 255, 255, 0.03) 78%, transparent 82%)');
|
|
504
|
+
$line-highlight-light: string.unquote('radial-gradient(ellipse calc(35px * var(--beam-w)) calc(28px * var(--beam-h)) at calc(var(--beam-x) * 100%) calc(100% + 2px), rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.25) 35%, transparent 70%)');
|
|
505
|
+
$line-highlight-dark: string.unquote('radial-gradient(ellipse calc(24px * var(--beam-w)) calc(28px * var(--beam-h)) at calc(var(--beam-x) * 100%) calc(100% + 2px), rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0.12) 30%, transparent 65%)');
|
|
506
|
+
$ring-mask: string.unquote('linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0)');
|
|
507
|
+
$edge-fade-y: string.unquote('linear-gradient(white, transparent 28px, transparent calc(100% - 28px), white)');
|
|
508
|
+
$edge-fade-x: string.unquote('linear-gradient(to right, white, transparent 28px, transparent calc(100% - 28px), white)');
|
|
509
|
+
$md-window: string.unquote('conic-gradient(from var(--beam-angle), transparent 0%, transparent 30%, rgba(255, 255, 255, 0.1) 36%, rgba(255, 255, 255, 0.35) 44%, white 52%, white 80%, rgba(255, 255, 255, 0.35) 86%, rgba(255, 255, 255, 0.1) 92%, transparent 95%, transparent 100%)');
|
|
510
|
+
$sm-window: string.unquote('conic-gradient(from var(--beam-angle), transparent 0%, transparent 22%, rgba(255, 255, 255, 0.12) 28%, rgba(255, 255, 255, 0.4) 36%, white 46%, white 82%, rgba(255, 255, 255, 0.4) 88%, rgba(255, 255, 255, 0.12) 94%, transparent 97%, transparent 100%)');
|
|
511
|
+
$line-window: string.unquote('radial-gradient(ellipse calc(78px * var(--beam-w)) calc(60px * var(--beam-h)) at calc(var(--beam-x) * 100%) 100%, white 0%, rgba(255, 255, 255, 0.5) 45%, transparent 100%)');
|
|
512
|
+
$line-bloom-window: string.unquote('radial-gradient(ellipse calc(84px * var(--beam-w)) calc(110px * var(--beam-h)) at calc(var(--beam-x) * 100%) 100%, white 0%, rgba(255, 255, 255, 0.5) 35%, transparent 100%)');
|
|
513
|
+
|
|
514
|
+
.borderBeam {
|
|
515
|
+
position: relative;
|
|
516
|
+
width: fit-content;
|
|
517
|
+
border-radius: var(--beam-radius);
|
|
518
|
+
|
|
519
|
+
--beam-hue-range: 30;
|
|
520
|
+
--beam-mono: 1;
|
|
521
|
+
--beam-radius: var(--radius);
|
|
522
|
+
--beam-strength: 1;
|
|
523
|
+
|
|
524
|
+
&::before,
|
|
525
|
+
&::after {
|
|
526
|
+
pointer-events: none;
|
|
527
|
+
}
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
.bloom {
|
|
531
|
+
position: absolute;
|
|
532
|
+
display: none;
|
|
533
|
+
pointer-events: none;
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
.mono {
|
|
537
|
+
--beam-mono: .5;
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
@each $palette in (colorful, mono, ocean, sunset) {
|
|
541
|
+
$inner-alpha: .45;
|
|
542
|
+
@if $palette == mono {
|
|
543
|
+
$inner-alpha: .225;
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
.#{$palette} {
|
|
547
|
+
--beam-rotate-blobs: #{blobs(map.get($ring-colors, $palette), $ring-geometry)};
|
|
548
|
+
--beam-rotate-inner: #{blobs(map.get($ring-colors, $palette), $ring-geometry, $inner-alpha, .9)};
|
|
549
|
+
--beam-sm-blobs: #{blobs(map.get($sm-colors, $palette), $sm-geometry)};
|
|
550
|
+
--beam-sm-inner: #{blobs(map.get($sm-colors, $palette), $sm-geometry, map.get($sm-inner-alphas, $palette))};
|
|
551
|
+
--beam-pulse-ring: #{pulse-blobs(pulse-ring($palette))};
|
|
552
|
+
--beam-pulse-inner-ring: #{pulse-blobs(pulse-ring-resized($palette))};
|
|
553
|
+
--beam-pulse-inner-bloom: #{pulse-blobs-frozen(pulse-table($palette, $pulse-inner-bloom))};
|
|
554
|
+
--beam-pulse-outer-core: #{pulse-blobs(pulse-table($palette, $pulse-outer-core))};
|
|
555
|
+
--beam-pulse-outer-bloom: #{pulse-blobs-frozen(pulse-table($palette, $pulse-outer-bloom))};
|
|
556
|
+
|
|
557
|
+
&.line::after {
|
|
558
|
+
background: #{$line-highlight-light}, #{line-blobs(map.get($line-colors, $palette, light), $line-geometry-light)};
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
&.line::before {
|
|
562
|
+
background: #{line-blobs(map.get($line-inner-colors, $palette), $line-inner-geometry, $line-inner-alphas)};
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
&.line > .bloom {
|
|
566
|
+
background: #{line-bloom($palette, light)};
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
[dark] &.line::after {
|
|
570
|
+
background: #{$line-highlight-dark}, #{line-blobs(map.get($line-colors, $palette, dark), $line-geometry-dark)};
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
[dark] &.line > .bloom {
|
|
574
|
+
background: #{line-bloom($palette, dark)};
|
|
575
|
+
}
|
|
576
|
+
}
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
/*
|
|
580
|
+
* Rotate family — a soft conic window travels around the perimeter and reveals
|
|
581
|
+
* the colorful blobs, with a hot highlight inside the window.
|
|
582
|
+
*/
|
|
583
|
+
|
|
584
|
+
.md,
|
|
585
|
+
.sm {
|
|
586
|
+
overflow: hidden;
|
|
587
|
+
|
|
588
|
+
&.isActive {
|
|
589
|
+
animation: borderBeamSpin calc(var(--beam-duration) * 1s) linear infinite, borderBeamFadeIn .6s ease forwards;
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
&.isFading {
|
|
593
|
+
animation: borderBeamSpin calc(var(--beam-duration) * 1s) linear infinite, borderBeamFadeOut .5s ease forwards;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
&.isActive::after,
|
|
597
|
+
&.isFading::after {
|
|
598
|
+
position: absolute;
|
|
599
|
+
z-index: 2;
|
|
600
|
+
inset: 0;
|
|
601
|
+
padding: 1px;
|
|
602
|
+
content: '';
|
|
603
|
+
border-radius: calc(var(--beam-radius) - 1px);
|
|
604
|
+
opacity: calc(var(--beam-opacity) * var(--beam-stroke-opacity) * var(--beam-mono) * var(--beam-strength));
|
|
605
|
+
animation: borderBeamHueShift 12s ease-in-out infinite;
|
|
606
|
+
clip-path: inset(0 round var(--beam-radius));
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
&.isActive::before,
|
|
610
|
+
&.isFading::before {
|
|
611
|
+
position: absolute;
|
|
612
|
+
z-index: 1;
|
|
613
|
+
inset: 0;
|
|
614
|
+
content: '';
|
|
615
|
+
opacity: calc(var(--beam-opacity) * var(--beam-inner-opacity) * var(--beam-mono) * var(--beam-strength));
|
|
616
|
+
animation: borderBeamHueShift 12s ease-in-out infinite;
|
|
617
|
+
clip-path: inset(0 round var(--beam-radius));
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
&.isStatic::before,
|
|
621
|
+
&.isStatic::after {
|
|
622
|
+
animation: none;
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
> .bloom {
|
|
626
|
+
z-index: 3;
|
|
627
|
+
inset: 0;
|
|
628
|
+
padding: 1px;
|
|
629
|
+
background: #{$rotate-bloom-light};
|
|
630
|
+
border-radius: calc(var(--beam-radius) - 1px);
|
|
631
|
+
opacity: 0;
|
|
632
|
+
filter: blur(8px) brightness(var(--beam-brightness)) saturate(var(--beam-saturation));
|
|
633
|
+
clip-path: inset(0 round var(--beam-radius));
|
|
634
|
+
mask: #{$ring-mask};
|
|
635
|
+
mask-composite: exclude;
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
[dark] & > .bloom {
|
|
639
|
+
background: #{$rotate-bloom-dark};
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
&.isActive > .bloom,
|
|
643
|
+
&.isFading > .bloom {
|
|
644
|
+
display: block;
|
|
645
|
+
opacity: calc(var(--beam-opacity) * var(--beam-bloom-opacity) * var(--beam-mono) * var(--beam-strength));
|
|
646
|
+
}
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
.md {
|
|
650
|
+
--beam-bloom-opacity: .34;
|
|
651
|
+
--beam-brightness: 1.3;
|
|
652
|
+
--beam-inner-opacity: .26;
|
|
653
|
+
--beam-inner-shadow: rgba(0, 0, 0, .14);
|
|
654
|
+
--beam-saturation: 1.5;
|
|
655
|
+
--beam-stroke-opacity: .12;
|
|
656
|
+
|
|
657
|
+
[dark] & {
|
|
658
|
+
--beam-bloom-opacity: .24;
|
|
659
|
+
--beam-inner-opacity: .42;
|
|
660
|
+
--beam-inner-shadow: rgba(255, 255, 255, .27);
|
|
661
|
+
--beam-saturation: 1.2;
|
|
662
|
+
--beam-stroke-opacity: .26;
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
&.isActive::after,
|
|
666
|
+
&.isFading::after {
|
|
667
|
+
background: #{$rotate-highlight-light}, var(--beam-rotate-blobs);
|
|
668
|
+
mask: #{$md-window}, #{$ring-mask};
|
|
669
|
+
mask-composite: intersect, exclude;
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
[dark] &.isActive::after,
|
|
673
|
+
[dark] &.isFading::after {
|
|
674
|
+
background: #{$rotate-highlight-dark}, var(--beam-rotate-blobs);
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
&.isActive::before,
|
|
678
|
+
&.isFading::before {
|
|
679
|
+
background: var(--beam-rotate-inner);
|
|
680
|
+
border-radius: var(--beam-radius);
|
|
681
|
+
box-shadow: inset 0 0 9px 1px var(--beam-inner-shadow);
|
|
682
|
+
mask: #{$md-window}, #{$edge-fade-y}, #{$edge-fade-x};
|
|
683
|
+
mask-composite: intersect, add;
|
|
684
|
+
}
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
.sm {
|
|
688
|
+
--beam-bloom-opacity: .16;
|
|
689
|
+
--beam-brightness: 1.3;
|
|
690
|
+
--beam-inner-opacity: .3;
|
|
691
|
+
--beam-inner-shadow: rgba(0, 0, 0, .14);
|
|
692
|
+
--beam-saturation: 1.8;
|
|
693
|
+
--beam-stroke-opacity: .12;
|
|
694
|
+
|
|
695
|
+
[dark] & {
|
|
696
|
+
--beam-bloom-opacity: .38;
|
|
697
|
+
--beam-inner-opacity: .24;
|
|
698
|
+
--beam-inner-shadow: rgba(255, 255, 255, .3);
|
|
699
|
+
--beam-saturation: 1.2;
|
|
700
|
+
--beam-stroke-opacity: .46;
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
&.isActive::after,
|
|
704
|
+
&.isFading::after {
|
|
705
|
+
background: #{$rotate-highlight-light}, var(--beam-sm-blobs);
|
|
706
|
+
mask: #{$sm-window}, #{$ring-mask};
|
|
707
|
+
mask-composite: intersect, exclude;
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
[dark] &.isActive::after,
|
|
711
|
+
[dark] &.isFading::after {
|
|
712
|
+
background: #{$rotate-highlight-dark}, var(--beam-sm-blobs);
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
&.isActive::before,
|
|
716
|
+
&.isFading::before {
|
|
717
|
+
background: var(--beam-sm-inner);
|
|
718
|
+
border-radius: var(--beam-radius);
|
|
719
|
+
box-shadow: inset 0 0 5px 1px var(--beam-inner-shadow);
|
|
720
|
+
mask: #{$sm-window};
|
|
721
|
+
mask-composite: add;
|
|
722
|
+
}
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
/*
|
|
726
|
+
* Line — a glow that travels along the bottom edge, with breathing width/height
|
|
727
|
+
* and desynced bloom spikes.
|
|
728
|
+
*/
|
|
729
|
+
|
|
730
|
+
.line {
|
|
731
|
+
overflow: hidden;
|
|
732
|
+
|
|
733
|
+
--beam-bloom-opacity: .3;
|
|
734
|
+
--beam-brightness: 1.3;
|
|
735
|
+
--beam-inner-opacity: .32;
|
|
736
|
+
--beam-inner-shadow: rgba(0, 0, 0, .14);
|
|
737
|
+
--beam-saturation: 1.95;
|
|
738
|
+
--beam-stroke-opacity: .16;
|
|
739
|
+
|
|
740
|
+
[dark] & {
|
|
741
|
+
--beam-bloom-opacity: .8;
|
|
742
|
+
--beam-inner-opacity: .7;
|
|
743
|
+
--beam-inner-shadow: rgba(255, 255, 255, .1);
|
|
744
|
+
--beam-saturation: 1.2;
|
|
745
|
+
--beam-stroke-opacity: 1.14;
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
&.isActive {
|
|
749
|
+
animation: borderBeamTravel calc(var(--beam-duration) * 1s) linear infinite, borderBeamEdgeFade calc(var(--beam-duration) * 1s) linear infinite, borderBeamBreathe calc(var(--beam-duration) * 1.3s) ease-in-out infinite, borderBeamSpike calc(var(--beam-duration) * 1.33s) ease-in-out infinite, borderBeamSpike2 calc(var(--beam-duration) * 1.7s) ease-in-out infinite, borderBeamFadeIn .6s ease forwards;
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
&.isFading {
|
|
753
|
+
animation: borderBeamTravel calc(var(--beam-duration) * 1s) linear infinite, borderBeamEdgeFade calc(var(--beam-duration) * 1s) linear infinite, borderBeamBreathe calc(var(--beam-duration) * 1.3s) ease-in-out infinite, borderBeamSpike calc(var(--beam-duration) * 1.33s) ease-in-out infinite, borderBeamSpike2 calc(var(--beam-duration) * 1.7s) ease-in-out infinite, borderBeamFadeOut .5s ease forwards;
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
&.isActive::after,
|
|
757
|
+
&.isFading::after {
|
|
758
|
+
position: absolute;
|
|
759
|
+
z-index: 2;
|
|
760
|
+
inset: 0;
|
|
761
|
+
padding: 1px;
|
|
762
|
+
content: '';
|
|
763
|
+
border-radius: calc(var(--beam-radius) - 1px);
|
|
764
|
+
opacity: calc(var(--beam-opacity) * var(--beam-edge) * var(--beam-stroke-opacity) * var(--beam-strength));
|
|
765
|
+
animation: borderBeamHueShift 12s ease-in-out infinite;
|
|
766
|
+
clip-path: inset(0 round var(--beam-radius));
|
|
767
|
+
mask: #{$line-window}, #{$ring-mask};
|
|
768
|
+
mask-composite: intersect, exclude;
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
&.isActive::before,
|
|
772
|
+
&.isFading::before {
|
|
773
|
+
position: absolute;
|
|
774
|
+
z-index: 1;
|
|
775
|
+
inset: 0;
|
|
776
|
+
content: '';
|
|
777
|
+
border-radius: var(--beam-radius);
|
|
778
|
+
box-shadow: inset 0 0 9px 1px var(--beam-inner-shadow);
|
|
779
|
+
opacity: calc(var(--beam-opacity) * var(--beam-edge) * var(--beam-inner-opacity) * var(--beam-strength));
|
|
780
|
+
animation: borderBeamHueShift 12s ease-in-out infinite;
|
|
781
|
+
clip-path: inset(0 round var(--beam-radius));
|
|
782
|
+
mask: #{$line-window}, #{$edge-fade-y}, #{$edge-fade-x};
|
|
783
|
+
mask-composite: intersect, add;
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
&.isStatic::before,
|
|
787
|
+
&.isStatic::after {
|
|
788
|
+
animation: none;
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
> .bloom {
|
|
792
|
+
z-index: 3;
|
|
793
|
+
inset: 0;
|
|
794
|
+
border-radius: calc(var(--beam-radius) - 1px);
|
|
795
|
+
opacity: 0;
|
|
796
|
+
clip-path: inset(0 round var(--beam-radius));
|
|
797
|
+
mask: #{$line-bloom-window};
|
|
798
|
+
mask-composite: add;
|
|
799
|
+
}
|
|
800
|
+
|
|
801
|
+
&.isActive > .bloom,
|
|
802
|
+
&.isFading > .bloom {
|
|
803
|
+
display: block;
|
|
804
|
+
opacity: calc(var(--beam-opacity) * var(--beam-edge) * var(--beam-bloom-opacity) * var(--beam-strength));
|
|
805
|
+
animation: borderBeamHueShiftBloom 8s ease-in-out infinite;
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
&.isStatic > .bloom {
|
|
809
|
+
animation: none;
|
|
810
|
+
}
|
|
811
|
+
|
|
812
|
+
&.mono > .bloom {
|
|
813
|
+
filter: blur(6px);
|
|
814
|
+
}
|
|
815
|
+
}
|
|
816
|
+
|
|
817
|
+
/*
|
|
818
|
+
* Pulse family — a breathing glow without rotation. The motion is driven from a
|
|
819
|
+
* shared, frame-rate-capped JS loop that writes the --beam-b* custom properties.
|
|
820
|
+
*/
|
|
821
|
+
|
|
822
|
+
.pulseInner,
|
|
823
|
+
.pulseOutside {
|
|
824
|
+
isolation: isolate;
|
|
825
|
+
|
|
826
|
+
&.isActive {
|
|
827
|
+
animation: borderBeamFadeIn .6s ease forwards;
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
&.isFading {
|
|
831
|
+
animation: borderBeamFadeOut .5s ease forwards;
|
|
832
|
+
}
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
.pulseInner {
|
|
836
|
+
overflow: hidden;
|
|
837
|
+
|
|
838
|
+
--beam-bloom-opacity: .8;
|
|
839
|
+
--beam-brightness: 1.3;
|
|
840
|
+
--beam-inner-opacity: .4;
|
|
841
|
+
--beam-pulse-corner: 0, 0, 0;
|
|
842
|
+
--beam-pulse-corner-alpha: .08;
|
|
843
|
+
--beam-pulse-frozen: .775;
|
|
844
|
+
--beam-saturation: .75;
|
|
845
|
+
--beam-stroke-opacity: .32;
|
|
846
|
+
|
|
847
|
+
[dark] & {
|
|
848
|
+
--beam-bloom-opacity: .66;
|
|
849
|
+
--beam-brightness: .75;
|
|
850
|
+
--beam-inner-opacity: .44;
|
|
851
|
+
--beam-pulse-corner: 255, 255, 255;
|
|
852
|
+
--beam-pulse-corner-alpha: .18;
|
|
853
|
+
--beam-pulse-frozen: .76;
|
|
854
|
+
--beam-saturation: 1.2;
|
|
855
|
+
--beam-stroke-opacity: 1.54;
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
&.isActive::after,
|
|
859
|
+
&.isFading::after {
|
|
860
|
+
position: absolute;
|
|
861
|
+
z-index: 2;
|
|
862
|
+
inset: 0;
|
|
863
|
+
padding: 1px;
|
|
864
|
+
content: '';
|
|
865
|
+
background: var(--beam-pulse-ring);
|
|
866
|
+
border-radius: var(--beam-radius);
|
|
867
|
+
opacity: calc(var(--beam-opacity) * var(--beam-stroke-opacity) * var(--beam-mono) * var(--beam-strength));
|
|
868
|
+
will-change: opacity, filter;
|
|
869
|
+
filter: hue-rotate(var(--beam-hue)) brightness(var(--beam-brightness)) saturate(var(--beam-saturation));
|
|
870
|
+
clip-path: inset(0 round var(--beam-radius));
|
|
871
|
+
mask: #{$ring-mask};
|
|
872
|
+
mask-composite: exclude;
|
|
873
|
+
}
|
|
874
|
+
|
|
875
|
+
&.isActive::before,
|
|
876
|
+
&.isFading::before {
|
|
877
|
+
position: absolute;
|
|
878
|
+
z-index: 1;
|
|
879
|
+
inset: 0;
|
|
880
|
+
content: '';
|
|
881
|
+
background:
|
|
882
|
+
var(--beam-pulse-inner-ring),
|
|
883
|
+
radial-gradient(ellipse 60px 60px at 0% 0%, rgba(var(--beam-pulse-corner), calc(var(--beam-pulse-corner-alpha) * var(--beam-bop-tl))), transparent 70%),
|
|
884
|
+
radial-gradient(ellipse 60px 60px at 100% 0%, rgba(var(--beam-pulse-corner), calc(var(--beam-pulse-corner-alpha) * var(--beam-bop-tr))), transparent 70%),
|
|
885
|
+
radial-gradient(ellipse 60px 60px at 0% 100%, rgba(var(--beam-pulse-corner), calc(var(--beam-pulse-corner-alpha) * var(--beam-bop-bl))), transparent 70%),
|
|
886
|
+
radial-gradient(ellipse 60px 60px at 100% 100%, rgba(var(--beam-pulse-corner), calc(var(--beam-pulse-corner-alpha) * var(--beam-bop-br))), transparent 70%);
|
|
887
|
+
border-radius: var(--beam-radius);
|
|
888
|
+
opacity: calc(var(--beam-opacity) * var(--beam-inner-opacity) * var(--beam-mono) * var(--beam-strength));
|
|
889
|
+
will-change: opacity, filter;
|
|
890
|
+
filter: hue-rotate(var(--beam-hue)) brightness(var(--beam-brightness)) saturate(var(--beam-saturation));
|
|
891
|
+
clip-path: inset(0 round var(--beam-radius));
|
|
892
|
+
mask: #{$edge-fade-y}, #{$edge-fade-x};
|
|
893
|
+
mask-composite: add;
|
|
894
|
+
}
|
|
895
|
+
|
|
896
|
+
> .bloom {
|
|
897
|
+
z-index: 3;
|
|
898
|
+
inset: 0;
|
|
899
|
+
padding: 1px;
|
|
900
|
+
background: var(--beam-pulse-inner-bloom);
|
|
901
|
+
border-radius: var(--beam-radius);
|
|
902
|
+
opacity: 0;
|
|
903
|
+
will-change: opacity;
|
|
904
|
+
clip-path: inset(0 round var(--beam-radius));
|
|
905
|
+
mask: #{$ring-mask};
|
|
906
|
+
mask-composite: exclude;
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
&.isActive > .bloom,
|
|
910
|
+
&.isFading > .bloom {
|
|
911
|
+
display: block;
|
|
912
|
+
opacity: calc(var(--beam-opacity) * var(--beam-bloom-opacity) * var(--beam-mono) * var(--beam-strength));
|
|
913
|
+
filter: blur(8px) hue-rotate(var(--beam-hue)) brightness(var(--beam-brightness)) saturate(var(--beam-saturation));
|
|
914
|
+
}
|
|
915
|
+
}
|
|
916
|
+
|
|
917
|
+
.pulseOutside {
|
|
918
|
+
overflow: visible;
|
|
919
|
+
|
|
920
|
+
--beam-bloom-opacity: .42;
|
|
921
|
+
--beam-brightness: 1.7;
|
|
922
|
+
--beam-inner-opacity: 1.04;
|
|
923
|
+
--beam-pulse-bloom-blur: 15px;
|
|
924
|
+
--beam-pulse-frozen: 1;
|
|
925
|
+
--beam-pulse-glow-blur: 6px;
|
|
926
|
+
--beam-saturation: .6;
|
|
927
|
+
--beam-stroke-opacity: 1.96;
|
|
928
|
+
|
|
929
|
+
[dark] & {
|
|
930
|
+
--beam-bloom-opacity: .3;
|
|
931
|
+
--beam-brightness: 1.9;
|
|
932
|
+
--beam-inner-opacity: .34;
|
|
933
|
+
--beam-pulse-bloom-blur: 22.5px;
|
|
934
|
+
--beam-pulse-frozen: .77;
|
|
935
|
+
--beam-pulse-glow-blur: 3px;
|
|
936
|
+
--beam-saturation: 1.2;
|
|
937
|
+
--beam-stroke-opacity: .94;
|
|
938
|
+
}
|
|
939
|
+
|
|
940
|
+
&.isActive::after,
|
|
941
|
+
&.isFading::after {
|
|
942
|
+
position: absolute;
|
|
943
|
+
z-index: 2;
|
|
944
|
+
inset: 0;
|
|
945
|
+
padding: 1px;
|
|
946
|
+
content: '';
|
|
947
|
+
background: var(--beam-pulse-outer-core);
|
|
948
|
+
border-radius: var(--beam-radius);
|
|
949
|
+
opacity: calc(var(--beam-opacity) * var(--beam-stroke-opacity) * var(--beam-mono) * var(--beam-strength));
|
|
950
|
+
will-change: opacity, filter;
|
|
951
|
+
filter: hue-rotate(var(--beam-hue)) brightness(var(--beam-brightness)) saturate(var(--beam-saturation));
|
|
952
|
+
clip-path: inset(0 round var(--beam-radius));
|
|
953
|
+
mask: #{$ring-mask};
|
|
954
|
+
mask-composite: exclude;
|
|
955
|
+
}
|
|
956
|
+
|
|
957
|
+
&.isActive::before,
|
|
958
|
+
&.isFading::before {
|
|
959
|
+
position: absolute;
|
|
960
|
+
z-index: -1;
|
|
961
|
+
inset: -10px;
|
|
962
|
+
content: '';
|
|
963
|
+
background: var(--beam-pulse-outer-core);
|
|
964
|
+
border-radius: calc(var(--beam-radius) + 10px);
|
|
965
|
+
opacity: calc(var(--beam-opacity) * var(--beam-inner-opacity) * var(--beam-mono) * var(--beam-strength));
|
|
966
|
+
will-change: opacity, filter;
|
|
967
|
+
transform: scale(.95, .9);
|
|
968
|
+
filter: blur(var(--beam-pulse-glow-blur)) hue-rotate(var(--beam-hue)) brightness(var(--beam-brightness)) saturate(var(--beam-saturation));
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
> .bloom {
|
|
972
|
+
z-index: -1;
|
|
973
|
+
inset: -30px;
|
|
974
|
+
background: var(--beam-pulse-outer-bloom);
|
|
975
|
+
border-radius: calc(var(--beam-radius) + 30px);
|
|
976
|
+
opacity: 0;
|
|
977
|
+
will-change: transform;
|
|
978
|
+
transform: scale(.95, .9);
|
|
979
|
+
}
|
|
980
|
+
|
|
981
|
+
&.isActive > .bloom,
|
|
982
|
+
&.isFading > .bloom {
|
|
983
|
+
display: block;
|
|
984
|
+
opacity: calc(var(--beam-opacity) * var(--beam-bloom-opacity) * var(--beam-mono) * var(--beam-strength));
|
|
985
|
+
filter: blur(var(--beam-pulse-bloom-blur)) hue-rotate(var(--beam-hue)) brightness(var(--beam-brightness)) saturate(var(--beam-saturation));
|
|
986
|
+
}
|
|
987
|
+
}
|
|
988
|
+
|
|
989
|
+
.borderBeam.isPaused,
|
|
990
|
+
.borderBeam.isPaused::before,
|
|
991
|
+
.borderBeam.isPaused::after,
|
|
992
|
+
.borderBeam.isPaused > .bloom {
|
|
993
|
+
animation-play-state: paused !important;
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
@media (prefers-reduced-motion: reduce) {
|
|
997
|
+
.pulseInner,
|
|
998
|
+
.pulseOutside,
|
|
999
|
+
.pulseInner::before,
|
|
1000
|
+
.pulseInner::after,
|
|
1001
|
+
.pulseOutside::before,
|
|
1002
|
+
.pulseOutside::after,
|
|
1003
|
+
.pulseInner > .bloom,
|
|
1004
|
+
.pulseOutside > .bloom {
|
|
1005
|
+
animation: none !important;
|
|
1006
|
+
}
|
|
1007
|
+
}
|
|
1008
|
+
|
|
1009
|
+
@keyframes borderBeamSpin {
|
|
1010
|
+
to {
|
|
1011
|
+
--beam-angle: 360deg;
|
|
1012
|
+
}
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
@keyframes borderBeamFadeIn {
|
|
1016
|
+
to {
|
|
1017
|
+
--beam-opacity: 1;
|
|
1018
|
+
}
|
|
1019
|
+
}
|
|
1020
|
+
|
|
1021
|
+
@keyframes borderBeamFadeOut {
|
|
1022
|
+
from {
|
|
1023
|
+
--beam-opacity: 1;
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1026
|
+
to {
|
|
1027
|
+
--beam-opacity: 0;
|
|
1028
|
+
}
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
@keyframes borderBeamHueShift {
|
|
1032
|
+
0%, 100% {
|
|
1033
|
+
filter: hue-rotate(calc(var(--beam-hue-range) * -1deg)) brightness(var(--beam-brightness)) saturate(var(--beam-saturation));
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
50% {
|
|
1037
|
+
filter: hue-rotate(calc(var(--beam-hue-range) * 1deg)) brightness(var(--beam-brightness)) saturate(var(--beam-saturation));
|
|
1038
|
+
}
|
|
1039
|
+
}
|
|
1040
|
+
|
|
1041
|
+
@keyframes borderBeamHueShiftBloom {
|
|
1042
|
+
0%, 100% {
|
|
1043
|
+
filter: blur(8px) hue-rotate(calc((var(--beam-hue-range) + 10) * -1deg)) brightness(var(--beam-brightness)) saturate(var(--beam-saturation));
|
|
1044
|
+
}
|
|
1045
|
+
|
|
1046
|
+
50% {
|
|
1047
|
+
filter: blur(8px) hue-rotate(calc((var(--beam-hue-range) + 10) * 1deg)) brightness(var(--beam-brightness)) saturate(var(--beam-saturation));
|
|
1048
|
+
}
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
@keyframes borderBeamTravel {
|
|
1052
|
+
0% {
|
|
1053
|
+
--beam-x: .06;
|
|
1054
|
+
--beam-w: .5;
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1057
|
+
10% {
|
|
1058
|
+
--beam-x: .15;
|
|
1059
|
+
--beam-w: .8;
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1062
|
+
20% {
|
|
1063
|
+
--beam-x: .25;
|
|
1064
|
+
--beam-w: 1.1;
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1067
|
+
30% {
|
|
1068
|
+
--beam-x: .35;
|
|
1069
|
+
--beam-w: 1.3;
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
40% {
|
|
1073
|
+
--beam-x: .44;
|
|
1074
|
+
--beam-w: 1.45;
|
|
1075
|
+
}
|
|
1076
|
+
|
|
1077
|
+
50% {
|
|
1078
|
+
--beam-x: .5;
|
|
1079
|
+
--beam-w: 1.5;
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1082
|
+
60% {
|
|
1083
|
+
--beam-x: .56;
|
|
1084
|
+
--beam-w: 1.45;
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1087
|
+
70% {
|
|
1088
|
+
--beam-x: .65;
|
|
1089
|
+
--beam-w: 1.3;
|
|
1090
|
+
}
|
|
1091
|
+
|
|
1092
|
+
80% {
|
|
1093
|
+
--beam-x: .75;
|
|
1094
|
+
--beam-w: 1.1;
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
90% {
|
|
1098
|
+
--beam-x: .85;
|
|
1099
|
+
--beam-w: .8;
|
|
1100
|
+
}
|
|
1101
|
+
|
|
1102
|
+
100% {
|
|
1103
|
+
--beam-x: .94;
|
|
1104
|
+
--beam-w: .5;
|
|
1105
|
+
}
|
|
1106
|
+
}
|
|
1107
|
+
|
|
1108
|
+
@keyframes borderBeamEdgeFade {
|
|
1109
|
+
0%, 100% {
|
|
1110
|
+
--beam-edge: 0;
|
|
1111
|
+
}
|
|
1112
|
+
|
|
1113
|
+
12.5% {
|
|
1114
|
+
--beam-edge: 0;
|
|
1115
|
+
}
|
|
1116
|
+
|
|
1117
|
+
32.5%, 67.5% {
|
|
1118
|
+
--beam-edge: 1;
|
|
1119
|
+
}
|
|
1120
|
+
|
|
1121
|
+
87.5% {
|
|
1122
|
+
--beam-edge: 0;
|
|
1123
|
+
}
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1126
|
+
@keyframes borderBeamBreathe {
|
|
1127
|
+
0%, 100% {
|
|
1128
|
+
--beam-h: .8;
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
25% {
|
|
1132
|
+
--beam-h: 1.25;
|
|
1133
|
+
}
|
|
1134
|
+
|
|
1135
|
+
55% {
|
|
1136
|
+
--beam-h: .85;
|
|
1137
|
+
}
|
|
1138
|
+
|
|
1139
|
+
80% {
|
|
1140
|
+
--beam-h: 1.3;
|
|
1141
|
+
}
|
|
1142
|
+
}
|
|
1143
|
+
|
|
1144
|
+
@keyframes borderBeamSpike {
|
|
1145
|
+
0%, 100% {
|
|
1146
|
+
--beam-spike: .8;
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
25% {
|
|
1150
|
+
--beam-spike: 1.3;
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
50% {
|
|
1154
|
+
--beam-spike: .9;
|
|
1155
|
+
}
|
|
1156
|
+
|
|
1157
|
+
75% {
|
|
1158
|
+
--beam-spike: 1.4;
|
|
1159
|
+
}
|
|
1160
|
+
}
|
|
1161
|
+
|
|
1162
|
+
@keyframes borderBeamSpike2 {
|
|
1163
|
+
0%, 100% {
|
|
1164
|
+
--beam-spike2: 1.2;
|
|
1165
|
+
}
|
|
1166
|
+
|
|
1167
|
+
25% {
|
|
1168
|
+
--beam-spike2: .7;
|
|
1169
|
+
}
|
|
1170
|
+
|
|
1171
|
+
50% {
|
|
1172
|
+
--beam-spike2: 1.4;
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1175
|
+
75% {
|
|
1176
|
+
--beam-spike2: .8;
|
|
1177
|
+
}
|
|
1178
|
+
}
|