igniteui-theming 1.0.0-release → 1.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.
Files changed (235) hide show
  1. package/index.js +5 -0
  2. package/json/colors/meta/multipliers.json +1 -1
  3. package/json/colors/presets/palettes.json +1 -1
  4. package/package.json +46 -16
  5. package/sass/animations/_easings.scss +24 -23
  6. package/sass/animations/_mixins.scss +7 -4
  7. package/sass/animations/entrances/_bounce.scss +4 -3
  8. package/sass/animations/entrances/_fade.scss +1 -0
  9. package/sass/animations/entrances/_flicker.scss +11 -26
  10. package/sass/animations/entrances/_flip.scss +1 -0
  11. package/sass/animations/entrances/_puff.scss +1 -0
  12. package/sass/animations/entrances/_roll.scss +1 -0
  13. package/sass/animations/entrances/_rotate.scss +1 -0
  14. package/sass/animations/entrances/_scale.scss +1 -0
  15. package/sass/animations/entrances/_slide.scss +1 -0
  16. package/sass/animations/entrances/_slit.scss +1 -0
  17. package/sass/animations/entrances/_swing.scss +1 -0
  18. package/sass/animations/entrances/_swirl.scss +1 -0
  19. package/sass/animations/exits/_bounce.scss +7 -6
  20. package/sass/animations/exits/_fade.scss +1 -0
  21. package/sass/animations/exits/_flicker.scss +13 -28
  22. package/sass/animations/exits/_flip.scss +9 -8
  23. package/sass/animations/exits/_puff.scss +12 -11
  24. package/sass/animations/exits/_roll.scss +5 -4
  25. package/sass/animations/exits/_rotate.scss +26 -25
  26. package/sass/animations/exits/_scale.scss +16 -15
  27. package/sass/animations/exits/_slide.scss +35 -34
  28. package/sass/animations/exits/_slit.scss +5 -4
  29. package/sass/animations/exits/_swing.scss +9 -8
  30. package/sass/animations/exits/_swirl.scss +19 -18
  31. package/sass/animations/generic/_flip.scss +5 -4
  32. package/sass/animations/generic/_rotate.scss +6 -5
  33. package/sass/animations/generic/_scale.scss +32 -31
  34. package/sass/animations/generic/_shadows.scss +13 -68
  35. package/sass/animations/generic/_slide.scss +1 -0
  36. package/sass/animations/generic/_swing.scss +1 -0
  37. package/sass/bem/_index.scss +50 -6
  38. package/sass/color/_charts.scss +27 -3
  39. package/sass/color/_functions.scss +78 -76
  40. package/sass/color/_mixins.scss +52 -22
  41. package/sass/color/_multipliers.scss +14 -14
  42. package/sass/color/_types.scss +12 -1
  43. package/sass/color/presets/dark/_bootstrap.scss +18 -1
  44. package/sass/color/presets/dark/_extra.scss +29 -0
  45. package/sass/color/presets/dark/_fluent.scss +45 -4
  46. package/sass/color/presets/dark/_indigo.scss +18 -1
  47. package/sass/color/presets/dark/_material.scss +18 -1
  48. package/sass/color/presets/light/_bootstrap.scss +18 -1
  49. package/sass/color/presets/light/_extra.scss +31 -2
  50. package/sass/color/presets/light/_fluent.scss +45 -4
  51. package/sass/color/presets/light/_indigo.scss +18 -1
  52. package/sass/color/presets/light/_material.scss +18 -1
  53. package/sass/elevations/_functions.scss +13 -2
  54. package/sass/elevations/_mixins.scss +8 -2
  55. package/sass/elevations/presets/_index.scss +4 -5
  56. package/sass/elevations/presets/_material.scss +12 -2
  57. package/sass/themes/_functions.scss +49 -17
  58. package/sass/themes/_index.scss +1 -0
  59. package/sass/themes/_mixins.scss +42 -9
  60. package/sass/themes/charts/_category-chart-theme.scss +325 -0
  61. package/sass/themes/charts/_data-chart-theme.scss +141 -0
  62. package/sass/themes/charts/_doughnut-chart-theme.scss +83 -0
  63. package/sass/themes/charts/_financial-chart-theme.scss +331 -0
  64. package/sass/themes/charts/_funnel-chart-theme.scss +104 -0
  65. package/sass/themes/charts/_gauge-theme.scss +161 -0
  66. package/sass/themes/charts/_geo-map-theme.scss +54 -0
  67. package/sass/themes/charts/_graph-theme.scss +135 -0
  68. package/sass/themes/charts/_index.scss +12 -0
  69. package/sass/themes/charts/_pie-chart-theme.scss +111 -0
  70. package/sass/themes/charts/_shape-chart-theme.scss +277 -0
  71. package/sass/themes/charts/_sparkline-theme.scss +116 -0
  72. package/sass/themes/charts/_theme.scss +27 -0
  73. package/sass/themes/schemas/_index.scss +12 -0
  74. package/sass/themes/schemas/charts/_index.scss +2 -0
  75. package/sass/themes/schemas/charts/dark/_category-chart.scss +29 -0
  76. package/sass/themes/schemas/charts/dark/_data-chart.scss +28 -0
  77. package/sass/themes/schemas/charts/dark/_doughnut-chart.scss +28 -0
  78. package/sass/themes/schemas/charts/dark/_financial-chart.scss +28 -0
  79. package/sass/themes/schemas/charts/dark/_funnel-chart.scss +28 -0
  80. package/sass/themes/schemas/charts/dark/_gauge.scss +48 -0
  81. package/sass/themes/schemas/charts/dark/_geo-map.scss +32 -0
  82. package/sass/themes/schemas/charts/dark/_graph.scss +28 -0
  83. package/sass/themes/schemas/charts/dark/_index.scss +86 -0
  84. package/sass/themes/schemas/charts/dark/_pie-chart.scss +32 -0
  85. package/sass/themes/schemas/charts/dark/_shape-chart.scss +28 -0
  86. package/sass/themes/schemas/charts/dark/_sparkline.scss +28 -0
  87. package/sass/themes/schemas/charts/light/_category-chart.scss +222 -0
  88. package/sass/themes/schemas/charts/light/_data-chart.scss +69 -0
  89. package/sass/themes/schemas/charts/light/_doughnut-chart.scss +50 -0
  90. package/sass/themes/schemas/charts/light/_financial-chart.scss +140 -0
  91. package/sass/themes/schemas/charts/light/_funnel-chart.scss +48 -0
  92. package/sass/themes/schemas/charts/light/_gauge.scss +141 -0
  93. package/sass/themes/schemas/charts/light/_geo-map.scss +35 -0
  94. package/sass/themes/schemas/charts/light/_graph.scss +101 -0
  95. package/sass/themes/schemas/charts/light/_index.scss +86 -0
  96. package/sass/themes/schemas/charts/light/_pie-chart.scss +55 -0
  97. package/sass/themes/schemas/charts/light/_shape-chart.scss +121 -0
  98. package/sass/themes/schemas/charts/light/_sparkline.scss +74 -0
  99. package/sass/themes/schemas/components/_index.scss +2 -0
  100. package/sass/themes/schemas/components/dark/_action-strip.scss +50 -0
  101. package/sass/themes/schemas/components/dark/_avatar.scss +46 -0
  102. package/sass/themes/schemas/components/dark/_badge.scss +39 -0
  103. package/sass/themes/schemas/components/dark/_banner.scss +54 -0
  104. package/sass/themes/schemas/components/dark/_bottom-nav.scss +61 -0
  105. package/sass/themes/schemas/components/dark/_button-group.scss +190 -0
  106. package/sass/themes/schemas/components/dark/_button.scss +485 -0
  107. package/sass/themes/schemas/components/dark/_calendar.scss +338 -0
  108. package/sass/themes/schemas/components/dark/_card.scss +71 -0
  109. package/sass/themes/schemas/components/dark/_carousel.scss +127 -0
  110. package/sass/themes/schemas/components/dark/_checkbox.scss +97 -0
  111. package/sass/themes/schemas/components/dark/_chip.scss +109 -0
  112. package/sass/themes/schemas/components/dark/_column-actions.scss +28 -0
  113. package/sass/themes/schemas/components/dark/_combo.scss +56 -0
  114. package/sass/themes/schemas/components/dark/_date-range-picker.scss +28 -0
  115. package/sass/themes/schemas/components/dark/_dialog.scss +55 -0
  116. package/sass/themes/schemas/components/dark/_divider.scss +43 -0
  117. package/sass/themes/schemas/components/dark/_dock-manager.scss +349 -0
  118. package/sass/themes/schemas/components/dark/_drop-down.scss +86 -0
  119. package/sass/themes/schemas/components/dark/_expansion-panel.scss +87 -0
  120. package/sass/themes/schemas/components/dark/_grid-filtering.scss +28 -0
  121. package/sass/themes/schemas/components/dark/_grid-summary.scss +83 -0
  122. package/sass/themes/schemas/components/dark/_grid-toolbar.scss +36 -0
  123. package/sass/themes/schemas/components/dark/_grid.scss +684 -0
  124. package/sass/themes/schemas/components/dark/_highlight.scss +72 -0
  125. package/sass/themes/schemas/components/dark/_icon.scss +40 -0
  126. package/sass/themes/schemas/components/dark/_index.scss +310 -0
  127. package/sass/themes/schemas/components/dark/_input-group.scss +170 -0
  128. package/sass/themes/schemas/components/dark/_label.scss +33 -0
  129. package/sass/themes/schemas/components/dark/_list.scss +116 -0
  130. package/sass/themes/schemas/components/dark/_navbar.scss +27 -0
  131. package/sass/themes/schemas/components/dark/_navdrawer.scss +142 -0
  132. package/sass/themes/schemas/components/dark/_overlay.scss +34 -0
  133. package/sass/themes/schemas/components/dark/_pagination.scss +42 -0
  134. package/sass/themes/schemas/components/dark/_pivot-data-selector.scss +27 -0
  135. package/sass/themes/schemas/components/dark/_progress.scss +103 -0
  136. package/sass/themes/schemas/components/dark/_query-builder.scss +35 -0
  137. package/sass/themes/schemas/components/dark/_radio.scss +139 -0
  138. package/sass/themes/schemas/components/dark/_rating.scss +29 -0
  139. package/sass/themes/schemas/components/dark/_ripple.scss +28 -0
  140. package/sass/themes/schemas/components/dark/_scrollbar.scss +69 -0
  141. package/sass/themes/schemas/components/dark/_select.scss +56 -0
  142. package/sass/themes/schemas/components/dark/_slider.scss +136 -0
  143. package/sass/themes/schemas/components/dark/_snackbar.scss +55 -0
  144. package/sass/themes/schemas/components/dark/_splitter.scss +68 -0
  145. package/sass/themes/schemas/components/dark/_stepper.scss +184 -0
  146. package/sass/themes/schemas/components/dark/_switch.scss +222 -0
  147. package/sass/themes/schemas/components/dark/_tabs.scss +65 -0
  148. package/sass/themes/schemas/components/dark/_time-picker.scss +54 -0
  149. package/sass/themes/schemas/components/dark/_toast.scss +67 -0
  150. package/sass/themes/schemas/components/dark/_tooltip.scss +44 -0
  151. package/sass/themes/schemas/components/dark/_tree.scss +132 -0
  152. package/sass/themes/schemas/components/dark/_watermark.scss +48 -0
  153. package/sass/themes/schemas/components/elevation/_badge.scss +17 -0
  154. package/sass/themes/schemas/components/elevation/_bottom-nav.scss +23 -0
  155. package/sass/themes/schemas/components/elevation/_button-group.scss +29 -0
  156. package/sass/themes/schemas/components/elevation/_button.scss +63 -0
  157. package/sass/themes/schemas/components/elevation/_card.scss +37 -0
  158. package/sass/themes/schemas/components/elevation/_carousel.scss +29 -0
  159. package/sass/themes/schemas/components/elevation/_chip.scss +29 -0
  160. package/sass/themes/schemas/components/elevation/_dialog.scss +17 -0
  161. package/sass/themes/schemas/components/elevation/_drop-down.scss +29 -0
  162. package/sass/themes/schemas/components/elevation/_grid.scss +21 -0
  163. package/sass/themes/schemas/components/elevation/_input-group.scss +37 -0
  164. package/sass/themes/schemas/components/elevation/_navbar.scss +23 -0
  165. package/sass/themes/schemas/components/elevation/_navdrawer.scss +17 -0
  166. package/sass/themes/schemas/components/elevation/_snackbar.scss +17 -0
  167. package/sass/themes/schemas/components/elevation/_switch.scss +15 -0
  168. package/sass/themes/schemas/components/elevation/_time-picker.scss +13 -0
  169. package/sass/themes/schemas/components/elevation/_toast.scss +17 -0
  170. package/sass/themes/schemas/components/light/_action-strip.scss +113 -0
  171. package/sass/themes/schemas/components/light/_avatar.scss +74 -0
  172. package/sass/themes/schemas/components/light/_badge.scss +82 -0
  173. package/sass/themes/schemas/components/light/_banner.scss +96 -0
  174. package/sass/themes/schemas/components/light/_bottom-nav.scss +61 -0
  175. package/sass/themes/schemas/components/light/_button-group.scss +443 -0
  176. package/sass/themes/schemas/components/light/_button.scss +1866 -0
  177. package/sass/themes/schemas/components/light/_calendar.scss +966 -0
  178. package/sass/themes/schemas/components/light/_card.scss +224 -0
  179. package/sass/themes/schemas/components/light/_carousel.scss +205 -0
  180. package/sass/themes/schemas/components/light/_checkbox.scss +352 -0
  181. package/sass/themes/schemas/components/light/_chip.scss +558 -0
  182. package/sass/themes/schemas/components/light/_column-actions.scss +42 -0
  183. package/sass/themes/schemas/components/light/_combo.scss +312 -0
  184. package/sass/themes/schemas/components/light/_date-range-picker.scss +35 -0
  185. package/sass/themes/schemas/components/light/_dialog.scss +119 -0
  186. package/sass/themes/schemas/components/light/_divider.scss +33 -0
  187. package/sass/themes/schemas/components/light/_dock-manager.scss +548 -0
  188. package/sass/themes/schemas/components/light/_drop-down.scss +411 -0
  189. package/sass/themes/schemas/components/light/_expansion-panel.scss +181 -0
  190. package/sass/themes/schemas/components/light/_grid-filtering.scss +105 -0
  191. package/sass/themes/schemas/components/light/_grid-summary.scss +138 -0
  192. package/sass/themes/schemas/components/light/_grid-toolbar.scss +126 -0
  193. package/sass/themes/schemas/components/light/_grid.scss +1429 -0
  194. package/sass/themes/schemas/components/light/_highlight.scss +86 -0
  195. package/sass/themes/schemas/components/light/_icon.scss +51 -0
  196. package/sass/themes/schemas/components/light/_index.scss +310 -0
  197. package/sass/themes/schemas/components/light/_input-group.scss +869 -0
  198. package/sass/themes/schemas/components/light/_label.scss +53 -0
  199. package/sass/themes/schemas/components/light/_list.scss +343 -0
  200. package/sass/themes/schemas/components/light/_navbar.scss +116 -0
  201. package/sass/themes/schemas/components/light/_navdrawer.scss +234 -0
  202. package/sass/themes/schemas/components/light/_overlay.scss +42 -0
  203. package/sass/themes/schemas/components/light/_pagination.scss +105 -0
  204. package/sass/themes/schemas/components/light/_pivot-data-selector.scss +38 -0
  205. package/sass/themes/schemas/components/light/_progress.scss +218 -0
  206. package/sass/themes/schemas/components/light/_query-builder.scss +138 -0
  207. package/sass/themes/schemas/components/light/_radio.scss +279 -0
  208. package/sass/themes/schemas/components/light/_rating.scss +129 -0
  209. package/sass/themes/schemas/components/light/_ripple.scss +36 -0
  210. package/sass/themes/schemas/components/light/_scrollbar.scss +79 -0
  211. package/sass/themes/schemas/components/light/_select.scss +164 -0
  212. package/sass/themes/schemas/components/light/_slider.scss +358 -0
  213. package/sass/themes/schemas/components/light/_snackbar.scss +149 -0
  214. package/sass/themes/schemas/components/light/_splitter.scss +105 -0
  215. package/sass/themes/schemas/components/light/_stepper.scss +709 -0
  216. package/sass/themes/schemas/components/light/_switch.scss +535 -0
  217. package/sass/themes/schemas/components/light/_tabs.scss +412 -0
  218. package/sass/themes/schemas/components/light/_time-picker.scss +250 -0
  219. package/sass/themes/schemas/components/light/_toast.scss +113 -0
  220. package/sass/themes/schemas/components/light/_tooltip.scss +113 -0
  221. package/sass/themes/schemas/components/light/_tree.scss +296 -0
  222. package/sass/themes/schemas/components/light/_watermark.scss +101 -0
  223. package/sass/typography/_functions.scss +45 -5
  224. package/sass/typography/_mixins.scss +45 -6
  225. package/sass/typography/_types.scss +7 -17
  226. package/sass/typography/charts/_index.scss +28 -0
  227. package/sass/typography/presets/_bootstrap.scss +25 -24
  228. package/sass/typography/presets/_fluent.scss +24 -23
  229. package/sass/typography/presets/_indigo.scss +25 -24
  230. package/sass/typography/presets/_material.scss +24 -23
  231. package/sass/utils/_css.scss +11 -1
  232. package/sass/utils/_map.scss +10 -8
  233. package/sass/utils/_math.scss +5 -0
  234. package/sass/utils/_meta.scss +22 -1
  235. package/sass/utils/_string.scss +24 -6
package/index.js CHANGED
@@ -0,0 +1,5 @@
1
+ export { default as Palettes } from "./json/colors/presets/palettes.json";
2
+ export { default as PaletteMeta } from "./json/colors/meta/palette.json";
3
+ export { default as PaletteMultipliers } from "./json/colors/meta/multipliers.json";
4
+ export { default as Typescales } from "./json/typography/presets/typescales.json";
5
+ export { default as Elevations } from "./json/elevations/elevations.json";
@@ -1 +1 @@
1
- {"color":{"s":{"50":"1.23","100":".8","200":".64","300":".73","400":".875","500":"1","600":"1.26","700":"1.52","800":"1.5","900":"1.34","A100":"1.23","A200":"1.22","A400":"1.23","A700":"1.23"},"l":{"50":"1.78","100":"1.66","200":"1.43","300":"1.19","400":"1.08","500":"1","600":".89","700":".81","800":".73","900":".64","A100":"1.34","A200":"1.16","A400":".91","A700":".65"}},"grayscale":{"l":{"50":"13%","100":"26%","200":"38%","300":"54%","400":"62%","500":"74%","600":"88%","700":"93%","800":"96%","900":"98%"}}}
1
+ {"color":{"s":{"50":"1.23","100":"0.8","200":"0.64","300":"0.73","400":"0.875","500":"1","600":"1.26","700":"1.52","800":"1.5","900":"1.34","A100":"1.23","A200":"1.22","A400":"1.23","A700":"1.23"},"l":{"50":"1.78","100":"1.66","200":"1.43","300":"1.19","400":"1.08","500":"1","600":"0.89","700":"0.81","800":"0.73","900":"0.64","A100":"1.34","A200":"1.16","A400":"0.91","A700":"0.65"}},"grayscale":{"l":{"50":"13%","100":"26%","200":"38%","300":"54%","400":"62%","500":"74%","600":"88%","700":"93%","800":"96%","900":"98%"}}}
@@ -1 +1 @@
1
- {"dark-bootstrap-palette":{"primary":"#0d6efd","secondary":"#6c757d","gray":"#adb5bd","surface":"#212529","info":"#0dcaf0","success":"#198754","warn":"#ffc107","error":"#dc3545"},"dark-green-palette":{"primary":"#09f","secondary":"#72da67","surface":"#222","info":"#1377d5","success":"#4eb862","warn":"#fbb13c","error":"#ff134a"},"dark-purple-palette":{"primary":"#00b4d6","secondary":"#514590","surface":"#333","info":"#1377d5","success":"#4eb862","warn":"#fbb13c","error":"#ff134a"},"dark-fluent-palette":{"primary":"#0078d4","secondary":"#0078d4","surface":"#222","info":"#1377d5","success":"#107c10","warn":"#797673","error":"#a80000"},"dark-fluent-word-palette":{"primary":"#2b579a","secondary":"#2b579a","surface":"#222","info":"#1377d5","success":"#107c10","warn":"#797673","error":"#a80000"},"dark-fluent-excel-palette":{"primary":"#217346","secondary":"#217346","surface":"#222","info":"#1377d5","success":"#107c10","warn":"#797673","error":"#a80000"},"dark-indigo-palette":{"primary":"#3f51b5","secondary":"#3f51b5","gray":"hsl(262deg 8% 98%)","surface":"#2a2b2f","info":"#9208bc","success":"#689f38","warn":"#ff9800","error":"#cf1a2b"},"dark-material-palette":{"primary":"#09f","secondary":"#e41c77","surface":"#222","info":"#1377d5","success":"#4eb862","warn":"#faa419","error":"#ff134a"},"light-bootstrap-palette":{"primary":"#0d6efd","secondary":"#6c757d","gray":"#adb5bd","surface":"#f8f9fa","info":"#0dcaf0","success":"#198754","warn":"#ffc107","error":"#dc3545"},"light-green-palette":{"primary":"#09f","secondary":"#72da67","surface":"#fff","info":"#1377d5","success":"#4eb862","warn":"#fbb13c","error":"#ff134a"},"light-purple-palette":{"primary":"#00b4d6","secondary":"#514590","surface":"#fff","info":"#1377d5","success":"#4eb862","warn":"#fbb13c","error":"#ff134a"},"light-fluent-palette":{"primary":"#0078d4","secondary":"#0078d4","surface":"#fff","info":"#1377d5","success":"#107c10","warn":"#797673","error":"#a80000"},"light-fluent-word-palette":{"primary":"#2b579a","secondary":"#2b579a","surface":"#fff","info":"#1377d5","success":"#107c10","warn":"#797673","error":"#a80000"},"light-fluent-excel-palette":{"primary":"#217346","secondary":"#217346","surface":"#fff","info":"#1377d5","success":"#107c10","warn":"#797673","error":"#a80000"},"light-indigo-palette":{"primary":"#3f51b5","secondary":"#3f51b5","gray":"hsl(236deg 8% 5%)","surface":"#fff","info":"#9208bc","success":"#689f38","warn":"#ff9800","error":"#cf1a2b"},"light-material-palette":{"primary":"#09f","secondary":"#e41c77","surface":"white","info":"#1377d5","success":"#4eb862","warn":"#faa419","error":"#ff134a"}}
1
+ {"dark-bootstrap-palette":{"primary":"#0d6efd","secondary":"#6c757d","gray":"#adb5bd","surface":"#212529","info":"#0dcaf0","success":"#198754","warn":"#ffc107","error":"#dc3545"},"dark-green-palette":{"primary":"#09f","secondary":"#72da67","surface":"#222","info":"#1377d5","success":"#4eb862","warn":"#fbb13c","error":"#ff134a"},"dark-purple-palette":{"primary":"#00b4d6","secondary":"#514590","surface":"#333","info":"#1377d5","success":"#4eb862","warn":"#fbb13c","error":"#ff134a"},"dark-fluent-palette":{"primary":"#0078d4","secondary":"#2b88d8","surface":"#222","info":"#1377d5","success":"#107c10","warn":"#797673","error":"#a80000"},"dark-fluent-word-palette":{"primary":"#2b579a","secondary":"#2b579a","surface":"#222","info":"#1377d5","success":"#107c10","warn":"#797673","error":"#a80000"},"dark-fluent-excel-palette":{"primary":"#217346","secondary":"#217346","surface":"#222","info":"#1377d5","success":"#107c10","warn":"#797673","error":"#a80000"},"dark-indigo-palette":{"primary":"#3f51b5","secondary":"#3f51b5","gray":"hsl(262deg 8% 98%)","surface":"#2a2b2f","info":"#9208bc","success":"#689f38","warn":"#ff9800","error":"#cf1a2b"},"dark-material-palette":{"primary":"#09f","secondary":"#e41c77","surface":"#222","info":"#1377d5","success":"#4eb862","warn":"#faa419","error":"#ff134a"},"light-bootstrap-palette":{"primary":"#0d6efd","secondary":"#6c757d","gray":"#adb5bd","surface":"#f8f9fa","info":"#0dcaf0","success":"#198754","warn":"#ffc107","error":"#dc3545"},"light-green-palette":{"primary":"#09f","secondary":"#72da67","surface":"#fff","info":"#1377d5","success":"#4eb862","warn":"#fbb13c","error":"#ff134a"},"light-purple-palette":{"primary":"#00b4d6","secondary":"#514590","surface":"#fff","info":"#1377d5","success":"#4eb862","warn":"#fbb13c","error":"#ff134a"},"light-fluent-palette":{"primary":"#0078d4","secondary":"#2b88d8","surface":"#fff","info":"#1377d5","success":"#107c10","warn":"#797673","error":"#a80000"},"light-fluent-word-palette":{"primary":"#2b579a","secondary":"#2b579a","surface":"#fff","info":"#1377d5","success":"#107c10","warn":"#797673","error":"#a80000"},"light-fluent-excel-palette":{"primary":"#217346","secondary":"#217346","surface":"#fff","info":"#1377d5","success":"#107c10","warn":"#797673","error":"#a80000"},"light-indigo-palette":{"primary":"#3f51b5","secondary":"#3f51b5","gray":"hsl(236deg 8% 5%)","surface":"#fff","info":"#9208bc","success":"#689f38","warn":"#ff9800","error":"#cf1a2b"},"light-material-palette":{"primary":"#09f","secondary":"#e41c77","surface":"white","info":"#1377d5","success":"#4eb862","warn":"#faa419","error":"#ff134a"}}
package/package.json CHANGED
@@ -1,17 +1,34 @@
1
1
  {
2
2
  "name": "igniteui-theming",
3
- "version": "1.0.0-release",
3
+ "version": "1.0.0",
4
4
  "description": "A set of Sass variables, mixins, and functions for generating palettes, typography, and elevations used by Ignite UI components.",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
- "clean": "rimraf \"json/\"",
7
+ "clean": "npm run clean:json && npm run clean:docs",
8
+ "clean:json": "rimraf \"json/\"",
9
+ "clean:docs": "rimraf \"docs/\"",
8
10
  "build": "npm run build:json && npm run build:e2e",
9
- "build:docs": "npx sassdoc ./sass",
11
+ "build:docs": "npm run clean:docs && npm run build:docs:en:production",
12
+ "build:docs:en:production": "set NODE_ENV=production && npx sassdoc ./sass -d docs",
13
+ "build:docs:en:staging": "set NODE_ENV=staging && npx sassdoc ./sass -d docs",
10
14
  "build:e2e": "sass ./test/e2e/theme.scss ./test/e2e/theme.css",
11
15
  "build:json": "node scripts/buildJSON.mjs",
12
- "lint": "stylelint ./sass",
16
+ "serve:docs": "npx http-server ./docs",
17
+ "preview:palette": "node scripts/previewPalette.mjs",
18
+ "lint": "npm run lint:styles && npm run lint:prettier",
19
+ "lint:styles": "stylelint ./sass/**/*.scss",
20
+ "lint:prettier": "prettier \"./sass/**/*.scss\" --check --ignore-path .gitignore",
13
21
  "test": "jest",
14
- "serve:docs": "npx http-server ./sassdoc"
22
+ "format": "stylelint \"./sass/**/*.{scss,css}\" --fix --allow-empty-input --ignore-path .gitignore && prettier \"./sass/**/*.{scss,css}\" --write --ignore-path .gitignore",
23
+ "prepare": "husky install"
24
+ },
25
+ "jest": {
26
+ "testEnvironment": "jest-environment-node-single-context"
27
+ },
28
+ "lint-staged": {
29
+ "sass/**/*.{scss,css}": [
30
+ "npm run format"
31
+ ]
15
32
  },
16
33
  "files": [
17
34
  "/sass",
@@ -39,24 +56,37 @@
39
56
  "homepage": "https://github.com/IgniteUI/igniteui-theming#readme",
40
57
  "exports": {
41
58
  ".": {
42
- "sass": "./_index.scss"
59
+ "sass": "./_index.scss",
60
+ "esm2020": "./index.js",
61
+ "es2020": "./index.js",
62
+ "es2015": "./index.js",
63
+ "node": "./index.js",
64
+ "default": "./index.js"
43
65
  },
44
66
  "./functions": {
45
67
  "sass": "./sass/_functions.scss"
46
- }
68
+ },
69
+ "./sass/**/*.*": "./sass/**/*.*"
47
70
  },
48
71
  "devDependencies": {
49
- "globby": "^13.1.2",
50
- "jest": "^28.1.1",
51
- "postcss": "^8.4.14",
52
- "rimraf": "^3.0.2",
72
+ "globby": "^13.1.4",
73
+ "husky": "^8.0.3",
74
+ "igniteui-sassdoc-theme": "^1.1.6",
75
+ "jest": "^29.5.0",
76
+ "jest-environment-node-single-context": "^29.0.0",
77
+ "lunr": "^2.3.9",
78
+ "postcss": "^8.4.23",
79
+ "prettier": "^2.8.8",
80
+ "rimraf": "^4.4.1",
53
81
  "sass-export": "^2.1.2",
54
- "sass-true": "^6.1.0",
55
- "stylelint": "^14.9.1",
56
- "stylelint-config-standard-scss": "^4.0.0",
57
- "stylelint-scss": "^4.2.0"
82
+ "sass-true": "^7.0.0",
83
+ "sassdoc-plugin-localization": "^1.4.3",
84
+ "stylelint": "^15.6.2",
85
+ "stylelint-config-standard-scss": "^7.0.1",
86
+ "stylelint-scss": "^4.7.0",
87
+ "yargs": "^17.7.2"
58
88
  },
59
89
  "peerDependencies": {
60
- "sass": "^1.53.0"
90
+ "sass": "^1.58.1"
61
91
  }
62
92
  }
@@ -1,77 +1,78 @@
1
1
  ////
2
+ /// @package theming
2
3
  /// @group animations
3
4
  /// @access public
4
5
  /// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
5
6
  ////
6
7
 
7
8
  /// @type Timing Function
8
- $in-quad: cubic-bezier(.55, .085, .68, .53);
9
+ $in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
9
10
 
10
11
  /// @type Timing Function
11
- $in-cubic: cubic-bezier(.55, .55, .675, .19);
12
+ $in-cubic: cubic-bezier(0.55, 0.55, 0.675, 0.19);
12
13
 
13
14
  /// @type Timing Function
14
- $in-quart: cubic-bezier(.895, .03, .685, .22);
15
+ $in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
15
16
 
16
17
  /// @type Timing Function
17
- $in-quint: cubic-bezier(.755, .05, .855, .06);
18
+ $in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
18
19
 
19
20
  /// @type Timing Function
20
- $in-sine: cubic-bezier(.47, 0, .745, .715);
21
+ $in-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
21
22
 
22
23
  /// @type Timing Function
23
- $in-expo: cubic-bezier(.95, .05, .795, .035);
24
+ $in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
24
25
 
25
26
  /// @type Timing Function
26
- $in-circ: cubic-bezier(.95, .05, .795, .035);
27
+ $in-circ: cubic-bezier(0.95, 0.05, 0.795, 0.035);
27
28
 
28
29
  /// @type Timing Function
29
- $in-back: cubic-bezier(.95, .05, .795, .035);
30
+ $in-back: cubic-bezier(0.95, 0.05, 0.795, 0.035);
30
31
 
31
32
  /// @type Timing Function
32
- $out-quad: cubic-bezier(.25, .46, .45, .94);
33
+ $out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
33
34
 
34
35
  /// @type Timing Function
35
- $out-cubic: cubic-bezier(.215, .61, .355, 1);
36
+ $out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
36
37
 
37
38
  /// @type Timing Function
38
- $out-quart: cubic-bezier(.165, .84, .44, 1);
39
+ $out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
39
40
 
40
41
  /// @type Timing Function
41
- $out-quint: cubic-bezier(.23, 1, .32, 1);
42
+ $out-quint: cubic-bezier(0.23, 1, 0.32, 1);
42
43
 
43
44
  /// @type Timing Function
44
- $out-sine: cubic-bezier(.39, .575, .565, 1);
45
+ $out-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
45
46
 
46
47
  /// @type Timing Function
47
- $out-expo: cubic-bezier(.19, 1, .22, 1);
48
+ $out-expo: cubic-bezier(0.19, 1, 0.22, 1);
48
49
 
49
50
  /// @type Timing Function
50
- $out-circ: cubic-bezier(.075, .82, .165, 1);
51
+ $out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
51
52
 
52
53
  /// @type Timing Function
53
- $out-back: cubic-bezier(.175, .885, .32, 1.275);
54
+ $out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
54
55
 
55
56
  /// @type Timing Function
56
- $in-out-quad: cubic-bezier(.455, .03, .515, .955);
57
+ $in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
57
58
 
58
59
  /// @type Timing Function
59
- $in-out-cubic: cubic-bezier(.645, .045, .355, 1);
60
+ $in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
60
61
 
61
62
  /// @type Timing Function
62
- $in-out-quart: cubic-bezier(.77, 0, .175, 1);
63
+ $in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);
63
64
 
64
65
  /// @type Timing Function
65
- $in-out-quint: .5s cubic-bezier(.86, 0, .07, 1);
66
+ $in-out-quint: 0.5s cubic-bezier(0.86, 0, 0.07, 1);
66
67
 
67
68
  /// @type Timing Function
68
- $in-out-sine: cubic-bezier(.445, .05, .55, .95);
69
+ $in-out-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
69
70
 
70
71
  /// @type Timing Function
71
72
  $in-out-expo: cubic-bezier(1, 0, 0, 1);
72
73
 
73
74
  /// @type Timing Function
74
- $in-out-circ: cubic-bezier(.785, .135, .15, .86);
75
+ $in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
75
76
 
76
77
  /// @type Timing Function
77
- $in-out-back: cubic-bezier(.68, -.55, .265, 1.55);
78
+ $in-out-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
@@ -3,11 +3,16 @@
3
3
  @use 'sass:map';
4
4
  @use 'sass:string';
5
5
 
6
+ ////
7
+ /// @package theming
8
+ /// @group animations
9
+ /// @access public
10
+ /// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
11
+ ////
12
+
6
13
  $keyframes: () !default;
7
14
 
8
15
  /// Registers a keyframes animation in the keyframes registry.
9
- /// @access public
10
- /// @group animations
11
16
  /// @param {String} $name - The name of the keyframes animation.
12
17
  @mixin keyframes($name) {
13
18
  $keyframe: map.has-key($keyframes, $name);
@@ -25,8 +30,6 @@ $keyframes: () !default;
25
30
  }
26
31
 
27
32
  /// Animates an element.
28
- /// @access public
29
- /// @group animations
30
33
  /// @param {List} $animate - The list of animation properties.
31
34
  /// @example scss - Animating an element
32
35
  /// @include fade-in(); // include the 'fade-in' keyframes animation mixin
@@ -1,6 +1,7 @@
1
1
  @use '../mixins' as *;
2
2
 
3
3
  ////
4
+ /// @package theming
4
5
  /// @group animations
5
6
  /// @access public
6
7
  /// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
@@ -210,7 +211,7 @@
210
211
  }
211
212
 
212
213
  55% {
213
- transform: scale(.7);
214
+ transform: scale(0.7);
214
215
  animation-timing-function: ease-in;
215
216
  }
216
217
 
@@ -220,7 +221,7 @@
220
221
  }
221
222
 
222
223
  81% {
223
- transform: scale(.84);
224
+ transform: scale(0.84);
224
225
  animation-timing-function: ease-in;
225
226
  }
226
227
 
@@ -230,7 +231,7 @@
230
231
  }
231
232
 
232
233
  95% {
233
- transform: scale(.95);
234
+ transform: scale(0.95);
234
235
  animation-timing-function: ease-in;
235
236
  }
236
237
 
@@ -1,6 +1,7 @@
1
1
  @use '../mixins' as *;
2
2
 
3
3
  ////
4
+ /// @package theming
4
5
  /// @group animations
5
6
  /// @access public
6
7
  /// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
@@ -1,6 +1,7 @@
1
1
  @use '../mixins' as *;
2
2
 
3
3
  ////
4
+ /// @package theming
4
5
  /// @group animations
5
6
  /// @access public
6
7
  /// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
@@ -244,17 +245,13 @@
244
245
 
245
246
  65.1% {
246
247
  opacity: 1;
247
- box-shadow:
248
- 0 0 30px rgb(255 255 255 / 55%),
249
- 0 0 60px rgb(255 255 255 / 30%),
248
+ box-shadow: 0 0 30px rgb(255 255 255 / 55%), 0 0 60px rgb(255 255 255 / 30%),
250
249
  0 0 100px rgb(255 255 255 / 10%);
251
250
  }
252
251
 
253
252
  75% {
254
253
  opacity: 1;
255
- box-shadow:
256
- 0 0 30px rgb(255 255 255 / 55%),
257
- 0 0 60px rgb(255 255 255 / 30%),
254
+ box-shadow: 0 0 30px rgb(255 255 255 / 55%), 0 0 60px rgb(255 255 255 / 30%),
258
255
  0 0 100px rgb(255 255 255 / 10%);
259
256
  }
260
257
 
@@ -270,20 +267,14 @@
270
267
 
271
268
  77.1% {
272
269
  opacity: 1;
273
- box-shadow:
274
- 0 0 30px rgb(255 255 255 / 60%),
275
- 0 0 60px rgb(255 255 255 / 40%),
276
- 0 0 110px rgb(255 255 255 / 20%),
277
- 0 0 100px rgb(255 255 255 / 10%);
270
+ box-shadow: 0 0 30px rgb(255 255 255 / 60%), 0 0 60px rgb(255 255 255 / 40%),
271
+ 0 0 110px rgb(255 255 255 / 20%), 0 0 100px rgb(255 255 255 / 10%);
278
272
  }
279
273
 
280
274
  85% {
281
275
  opacity: 1;
282
- box-shadow:
283
- 0 0 30px rgb(255 255 255 / 60%),
284
- 0 0 60px rgb(255 255 255 / 40%),
285
- 0 0 110px rgb(255 255 255 / 20%),
286
- 0 0 100px rgb(255 255 255 / 10%);
276
+ box-shadow: 0 0 30px rgb(255 255 255 / 60%), 0 0 60px rgb(255 255 255 / 40%),
277
+ 0 0 110px rgb(255 255 255 / 20%), 0 0 100px rgb(255 255 255 / 10%);
287
278
  }
288
279
 
289
280
  85.1% {
@@ -298,20 +289,14 @@
298
289
 
299
290
  86.1% {
300
291
  opacity: 1;
301
- box-shadow:
302
- 0 0 30px rgb(255 255 255 / 60%),
303
- 0 0 60px rgb(255 255 255 / 45%),
304
- 0 0 110px rgb(255 255 255 / 25%),
305
- 0 0 100px rgb(255 255 255 / 10%);
292
+ box-shadow: 0 0 30px rgb(255 255 255 / 60%), 0 0 60px rgb(255 255 255 / 45%),
293
+ 0 0 110px rgb(255 255 255 / 25%), 0 0 100px rgb(255 255 255 / 10%);
306
294
  }
307
295
 
308
296
  100% {
309
297
  opacity: 1;
310
- box-shadow:
311
- 0 0 30px rgb(255 255 255 / 60%),
312
- 0 0 60px rgb(255 255 255 / 45%),
313
- 0 0 110px rgb(255 255 255 / 25%),
314
- 0 0 100px rgb(255 255 255 / 10%);
298
+ box-shadow: 0 0 30px rgb(255 255 255 / 60%), 0 0 60px rgb(255 255 255 / 45%),
299
+ 0 0 110px rgb(255 255 255 / 25%), 0 0 100px rgb(255 255 255 / 10%);
315
300
  }
316
301
  }
317
302
  }
@@ -1,6 +1,7 @@
1
1
  @use '../mixins' as *;
2
2
 
3
3
  ////
4
+ /// @package theming
4
5
  /// @group animations
5
6
  /// @access public
6
7
  /// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
@@ -1,6 +1,7 @@
1
1
  @use '../mixins' as *;
2
2
 
3
3
  ////
4
+ /// @package theming
4
5
  /// @group animations
5
6
  /// @access public
6
7
  /// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
@@ -1,6 +1,7 @@
1
1
  @use '../mixins' as *;
2
2
 
3
3
  ////
4
+ /// @package theming
4
5
  /// @group animations
5
6
  /// @access public
6
7
  /// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
@@ -1,6 +1,7 @@
1
1
  @use '../mixins' as *;
2
2
 
3
3
  ////
4
+ /// @package theming
4
5
  /// @group animations
5
6
  /// @access public
6
7
  /// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
@@ -1,6 +1,7 @@
1
1
  @use '../mixins' as *;
2
2
 
3
3
  ////
4
+ /// @package theming
4
5
  /// @group animations
5
6
  /// @access public
6
7
  /// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
@@ -1,6 +1,7 @@
1
1
  @use '../mixins' as *;
2
2
 
3
3
  ////
4
+ /// @package theming
4
5
  /// @group animations
5
6
  /// @access public
6
7
  /// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
@@ -1,6 +1,7 @@
1
1
  @use '../mixins' as *;
2
2
 
3
3
  ////
4
+ /// @package theming
4
5
  /// @group animations
5
6
  /// @access public
6
7
  /// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
@@ -1,6 +1,7 @@
1
1
  @use '../mixins' as *;
2
2
 
3
3
  ////
4
+ /// @package theming
4
5
  /// @group animations
5
6
  /// @access public
6
7
  /// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
@@ -1,6 +1,7 @@
1
1
  @use '../mixins' as *;
2
2
 
3
3
  ////
4
+ /// @package theming
4
5
  /// @group animations
5
6
  /// @access public
6
7
  /// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
@@ -1,6 +1,7 @@
1
1
  @use '../mixins' as *;
2
2
 
3
3
  ////
4
+ /// @package theming
4
5
  /// @group animations
5
6
  /// @access public
6
7
  /// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
@@ -8,7 +9,7 @@
8
9
 
9
10
  /// @requires {mixin} keyframes
10
11
  @mixin bounce-out-top {
11
- @include keyframes (bounce-out-top) {
12
+ @include keyframes(bounce-out-top) {
12
13
  0% {
13
14
  transform: translateY(0);
14
15
  animation-timing-function: ease-out;
@@ -57,7 +58,7 @@
57
58
 
58
59
  /// @requires {mixin} keyframes
59
60
  @mixin bounce-out-right {
60
- @include keyframes (bounce-out-right) {
61
+ @include keyframes(bounce-out-right) {
61
62
  0% {
62
63
  transform: translateX(0);
63
64
  animation-timing-function: ease-out;
@@ -106,7 +107,7 @@
106
107
 
107
108
  /// @requires {mixin} keyframes
108
109
  @mixin bounce-out-bottom {
109
- @include keyframes (bounce-out-bottom) {
110
+ @include keyframes(bounce-out-bottom) {
110
111
  0% {
111
112
  transform: translateY(0);
112
113
  animation-timing-function: ease-out;
@@ -155,7 +156,7 @@
155
156
 
156
157
  /// @requires {mixin} keyframes
157
158
  @mixin bounce-out-left {
158
- @include keyframes (bounce-out-left) {
159
+ @include keyframes(bounce-out-left) {
159
160
  0% {
160
161
  transform: translateX(0);
161
162
  animation-timing-function: ease-out;
@@ -204,7 +205,7 @@
204
205
 
205
206
  /// @requires {mixin} keyframes
206
207
  @mixin bounce-out-bck {
207
- @include keyframes (bounce-out-bck) {
208
+ @include keyframes(bounce-out-bck) {
208
209
  0% {
209
210
  transform: translateZ(0);
210
211
  animation-timing-function: ease-out;
@@ -254,7 +255,7 @@
254
255
 
255
256
  /// @requires {mixin} keyframes
256
257
  @mixin bounce-out-fwd {
257
- @include keyframes (bounce-out-fwd) {
258
+ @include keyframes(bounce-out-fwd) {
258
259
  0% {
259
260
  transform: translateZ(0);
260
261
  animation-timing-function: ease-out;
@@ -1,6 +1,7 @@
1
1
  @use '../mixins' as *;
2
2
 
3
3
  ////
4
+ /// @package theming
4
5
  /// @group animations
5
6
  /// @access public
6
7
  /// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
@@ -1,6 +1,7 @@
1
1
  @use '../mixins' as *;
2
2
 
3
3
  ////
4
+ /// @package theming
4
5
  /// @group animations
5
6
  /// @access public
6
7
  /// @author <a href="https://github.com/simeonoff" target="_blank">Simeon Simeonoff</a>
@@ -8,7 +9,7 @@
8
9
 
9
10
  /// @requires {mixin} keyframes
10
11
  @mixin flicker-out-1 {
11
- @include keyframes (flicker-out-1) {
12
+ @include keyframes(flicker-out-1) {
12
13
  0% {
13
14
  opacity: 1;
14
15
  }
@@ -153,23 +154,17 @@
153
154
 
154
155
  /// @requires {mixin} keyframes
155
156
  @mixin flicker-out-2 {
156
- @include keyframes (flicker-out-2) {
157
+ @include keyframes(flicker-out-2) {
157
158
  0% {
158
159
  opacity: 1;
159
- box-shadow:
160
- 0 0 30px rgb(255 255 255 / 60%),
161
- 0 0 60px rgb(255 255 255 / 45%),
162
- 0 0 110px rgb(255 255 255 / 25%),
163
- 0 0 100px rgb(255 255 255 / 10%);
160
+ box-shadow: 0 0 30px rgb(255 255 255 / 60%), 0 0 60px rgb(255 255 255 / 45%),
161
+ 0 0 110px rgb(255 255 255 / 25%), 0 0 100px rgb(255 255 255 / 10%);
164
162
  }
165
163
 
166
164
  13.9% {
167
165
  opacity: 1;
168
- box-shadow:
169
- 0 0 30px rgb(255 255 255 / 60%),
170
- 0 0 60px rgb(255 255 255 / 45%),
171
- 0 0 110px rgb(255 255 255 / 25%),
172
- 0 0 100px rgb(255 255 255 / 10%);
166
+ box-shadow: 0 0 30px rgb(255 255 255 / 60%), 0 0 60px rgb(255 255 255 / 45%),
167
+ 0 0 110px rgb(255 255 255 / 25%), 0 0 100px rgb(255 255 255 / 10%);
173
168
  }
174
169
 
175
170
  14% {
@@ -184,20 +179,14 @@
184
179
 
185
180
  15% {
186
181
  opacity: 1;
187
- box-shadow:
188
- 0 0 30px rgb(255 255 255 / 55%),
189
- 0 0 60px rgb(255 255 255 / 40%),
190
- 0 0 110px rgb(255 255 255 / 20%),
191
- 0 0 100px rgb(255 255 255 / 10%);
182
+ box-shadow: 0 0 30px rgb(255 255 255 / 55%), 0 0 60px rgb(255 255 255 / 40%),
183
+ 0 0 110px rgb(255 255 255 / 20%), 0 0 100px rgb(255 255 255 / 10%);
192
184
  }
193
185
 
194
186
  22.9% {
195
187
  opacity: 1;
196
- box-shadow:
197
- 0 0 30px rgb(255 255 255 / 55%),
198
- 0 0 60px rgb(255 255 255 / 40%),
199
- 0 0 110px rgb(255 255 255 / 20%),
200
- 0 0 100px rgb(255 255 255 / 10%);
188
+ box-shadow: 0 0 30px rgb(255 255 255 / 55%), 0 0 60px rgb(255 255 255 / 40%),
189
+ 0 0 110px rgb(255 255 255 / 20%), 0 0 100px rgb(255 255 255 / 10%);
201
190
  }
202
191
 
203
192
  23% {
@@ -212,17 +201,13 @@
212
201
 
213
202
  25% {
214
203
  opacity: 1;
215
- box-shadow:
216
- 0 0 30px rgb(255 255 255 / 55%),
217
- 0 0 60px rgb(255 255 255 / 35%),
204
+ box-shadow: 0 0 30px rgb(255 255 255 / 55%), 0 0 60px rgb(255 255 255 / 35%),
218
205
  0 0 100px rgb(255 255 255 / 10%);
219
206
  }
220
207
 
221
208
  34.9% {
222
209
  opacity: 1;
223
- box-shadow:
224
- 0 0 30px rgb(255 255 255 / 55%),
225
- 0 0 60px rgb(255 255 255 / 35%),
210
+ box-shadow: 0 0 30px rgb(255 255 255 / 55%), 0 0 60px rgb(255 255 255 / 35%),
226
211
  0 0 100px rgb(255 255 255 / 10%);
227
212
  }
228
213