jekyll-theme-centos 2.52.0.beta.4 → 2.52.0.beta.5

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 (315) hide show
  1. checksums.yaml +4 -4
  2. data/_data/base/announcement_schema.yml +50 -0
  3. data/_data/base/artwork_schema.yml +46 -0
  4. data/_data/base/backtotop_schema.yml +53 -0
  5. data/_data/base/bits.yml +96 -0
  6. data/_data/base/bits_schema.yml +183 -0
  7. data/_data/base/breadcrumb_schema.yml +14 -0
  8. data/_data/base/breakingnews_schema.yml +59 -0
  9. data/_data/base/color.yml +1042 -0
  10. data/_data/base/color_schema.yml +1036 -0
  11. data/_data/base/content.yml +2 -0
  12. data/_data/base/content_schema.yml +26 -0
  13. data/_data/base/converter_link_schema.yml +48 -0
  14. data/_data/base/copyright.yml +12 -0
  15. data/_data/base/copyright_schema.yml +34 -0
  16. data/_data/base/copyvalue_schema.yml +49 -0
  17. data/_data/base/datatable_schema.yml +57 -0
  18. data/_data/base/event_schema.yml +122 -0
  19. data/_data/base/fontawesome_schema.yml +49 -0
  20. data/_data/base/highlight_schema.yml +68 -0
  21. data/_data/base/languages.yml +186 -0
  22. data/_data/base/link_schema.yml +153 -0
  23. data/_data/base/locales_schema.yml +25 -0
  24. data/_data/base/navbar.yml +20 -0
  25. data/_data/base/navbar_schema.yml +121 -0
  26. data/_data/base/navindex_schema.yml +67 -0
  27. data/_data/base/ogp_schema.yml +186 -0
  28. data/_data/base/project.yml +37 -0
  29. data/_data/base/project_schema.yml +120 -0
  30. data/_data/base/shortcut_schema.yml +74 -0
  31. data/_data/base/social.yml +25 -0
  32. data/_data/base/social_schema.yml +53 -0
  33. data/_data/base/title_schema.yml +49 -0
  34. data/_data/base/toc_schema.yml +100 -0
  35. data/_data/download/cards.yml +309 -0
  36. data/_data/download/navbar.yml +11 -0
  37. data/_data/sponsors/carousel.yml +37 -0
  38. data/_data/sponsors/navbar.yml +6 -0
  39. data/_includes/base/announcement.html.liquid +51 -0
  40. data/_includes/base/artwork.html.liquid +49 -0
  41. data/_includes/base/backtotop.html.liquid +51 -0
  42. data/_includes/base/bits.html.liquid +135 -0
  43. data/_includes/base/breadcrumb.html.liquid +37 -0
  44. data/_includes/base/breakingnews.html.liquid +74 -0
  45. data/_includes/base/card.html.liquid +96 -0
  46. data/_includes/base/copyright.html.liquid +56 -0
  47. data/_includes/base/copyvalue.html.liquid +59 -0
  48. data/_includes/base/datatable.html.liquid +64 -0
  49. data/_includes/base/event.html.liquid +89 -0
  50. data/_includes/base/fontawesome.html.liquid +58 -0
  51. data/_includes/base/head.html.liquid +101 -0
  52. data/_includes/base/highlight.html.liquid +65 -0
  53. data/_includes/base/image.html.liquid +42 -0
  54. data/_includes/base/link.html.liquid +139 -0
  55. data/_includes/base/locales.html.liquid +41 -0
  56. data/_includes/base/navbar.html.liquid +106 -0
  57. data/_includes/base/navindex.html.liquid +162 -0
  58. data/_includes/base/ogp.html.liquid +118 -0
  59. data/_includes/base/project.html.liquid +90 -0
  60. data/_includes/base/script.html.liquid +59 -0
  61. data/_includes/base/shortcut.html.liquid +65 -0
  62. data/_includes/base/social.html.liquid +59 -0
  63. data/_includes/base/title.html.liquid +52 -0
  64. data/_includes/base/toc.html.liquid +91 -0
  65. data/_includes/base/toc_generator.html.liquid +189 -0
  66. data/_includes/download/cards-body-commands.html +7 -0
  67. data/_includes/download/cards-body-convert.html +10 -0
  68. data/_includes/download/cards-body-doc.html +9 -0
  69. data/_includes/download/cards-body-documentation.html +11 -0
  70. data/_includes/download/cards-body-eol.html +16 -0
  71. data/_includes/download/cards-body-mirrors.html +8 -0
  72. data/_includes/download/cards-body-screenshot.html +26 -0
  73. data/_includes/download/cards-body-screenshots.html +32 -0
  74. data/_includes/download/cards-body.html +8 -0
  75. data/_includes/download/cards-footer.html +3 -0
  76. data/_includes/download/cards-header-commands.html +8 -0
  77. data/_includes/download/cards-header-convert.html +8 -0
  78. data/_includes/download/cards-header-doc.html +8 -0
  79. data/_includes/download/cards-header-documentation.html +8 -0
  80. data/_includes/download/cards-header-eol.html +8 -0
  81. data/_includes/download/cards-header-mirrors.html +13 -0
  82. data/_includes/download/cards-header-screenshot.html +8 -0
  83. data/_includes/download/cards-header-screenshots.html +8 -0
  84. data/_includes/download/cards-header.html +13 -0
  85. data/_includes/download/cards.html +120 -0
  86. data/_includes/sponsors/cards.html +11 -0
  87. data/_includes/sponsors/carousel.html +24 -0
  88. data/_layouts/base/default.html +117 -0
  89. data/_layouts/download/cards.html +7 -0
  90. data/_layouts/download/default.html +7 -0
  91. data/_layouts/people/default.html +68 -0
  92. data/_sass/base/_customization.scss +251 -0
  93. data/_sass/base/_light-dark.scss +10 -0
  94. data/_sass/base/_maps.scss +104 -0
  95. data/_sass/base/_variables.scss +232 -0
  96. data/_sass/bootstrap/_accordion.scss +153 -0
  97. data/_sass/bootstrap/_alert.scss +68 -0
  98. data/_sass/bootstrap/_badge.scss +38 -0
  99. data/_sass/bootstrap/_breadcrumb.scss +40 -0
  100. data/_sass/bootstrap/_button-group.scss +147 -0
  101. data/_sass/bootstrap/_buttons.scss +216 -0
  102. data/_sass/bootstrap/_card.scss +238 -0
  103. data/_sass/bootstrap/_carousel.scss +226 -0
  104. data/_sass/bootstrap/_close.scss +66 -0
  105. data/_sass/bootstrap/_containers.scss +41 -0
  106. data/_sass/bootstrap/_dropdown.scss +250 -0
  107. data/_sass/bootstrap/_forms.scss +9 -0
  108. data/_sass/bootstrap/_functions.scss +302 -0
  109. data/_sass/bootstrap/_grid.scss +39 -0
  110. data/_sass/bootstrap/_helpers.scss +12 -0
  111. data/_sass/bootstrap/_images.scss +42 -0
  112. data/_sass/bootstrap/_list-group.scss +199 -0
  113. data/_sass/bootstrap/_maps.scss +174 -0
  114. data/_sass/bootstrap/_mixins.scss +42 -0
  115. data/_sass/bootstrap/_modal.scss +240 -0
  116. data/_sass/bootstrap/_nav.scss +197 -0
  117. data/_sass/bootstrap/_navbar.scss +289 -0
  118. data/_sass/bootstrap/_offcanvas.scss +147 -0
  119. data/_sass/bootstrap/_pagination.scss +109 -0
  120. data/_sass/bootstrap/_placeholders.scss +51 -0
  121. data/_sass/bootstrap/_popover.scss +196 -0
  122. data/_sass/bootstrap/_progress.scss +68 -0
  123. data/_sass/bootstrap/_reboot.scss +617 -0
  124. data/_sass/bootstrap/_root.scss +187 -0
  125. data/_sass/bootstrap/_spinners.scss +86 -0
  126. data/_sass/bootstrap/_tables.scss +171 -0
  127. data/_sass/bootstrap/_toasts.scss +73 -0
  128. data/_sass/bootstrap/_tooltip.scss +119 -0
  129. data/_sass/bootstrap/_transitions.scss +27 -0
  130. data/_sass/bootstrap/_type.scss +106 -0
  131. data/_sass/bootstrap/_utilities.scss +806 -0
  132. data/_sass/bootstrap/_variables-dark.scss +102 -0
  133. data/_sass/bootstrap/_variables.scss +1753 -0
  134. data/_sass/bootstrap/bootstrap-grid.scss +62 -0
  135. data/_sass/bootstrap/bootstrap-reboot.scss +10 -0
  136. data/_sass/bootstrap/bootstrap-utilities.scss +19 -0
  137. data/_sass/bootstrap/bootstrap.scss +52 -0
  138. data/_sass/bootstrap/forms/_floating-labels.scss +97 -0
  139. data/_sass/bootstrap/forms/_form-check.scss +189 -0
  140. data/_sass/bootstrap/forms/_form-control.scss +214 -0
  141. data/_sass/bootstrap/forms/_form-range.scss +91 -0
  142. data/_sass/bootstrap/forms/_form-select.scss +80 -0
  143. data/_sass/bootstrap/forms/_form-text.scss +11 -0
  144. data/_sass/bootstrap/forms/_input-group.scss +132 -0
  145. data/_sass/bootstrap/forms/_labels.scss +36 -0
  146. data/_sass/bootstrap/forms/_validation.scss +12 -0
  147. data/_sass/bootstrap/helpers/_clearfix.scss +3 -0
  148. data/_sass/bootstrap/helpers/_color-bg.scss +7 -0
  149. data/_sass/bootstrap/helpers/_colored-links.scss +30 -0
  150. data/_sass/bootstrap/helpers/_focus-ring.scss +5 -0
  151. data/_sass/bootstrap/helpers/_icon-link.scss +25 -0
  152. data/_sass/bootstrap/helpers/_position.scss +36 -0
  153. data/_sass/bootstrap/helpers/_ratio.scss +26 -0
  154. data/_sass/bootstrap/helpers/_stacks.scss +15 -0
  155. data/_sass/bootstrap/helpers/_stretched-link.scss +15 -0
  156. data/_sass/bootstrap/helpers/_text-truncation.scss +7 -0
  157. data/_sass/bootstrap/helpers/_visually-hidden.scss +8 -0
  158. data/_sass/bootstrap/helpers/_vr.scss +8 -0
  159. data/_sass/bootstrap/mixins/_alert.scss +18 -0
  160. data/_sass/bootstrap/mixins/_backdrop.scss +14 -0
  161. data/_sass/bootstrap/mixins/_banner.scss +7 -0
  162. data/_sass/bootstrap/mixins/_border-radius.scss +78 -0
  163. data/_sass/bootstrap/mixins/_box-shadow.scss +24 -0
  164. data/_sass/bootstrap/mixins/_breakpoints.scss +127 -0
  165. data/_sass/bootstrap/mixins/_buttons.scss +70 -0
  166. data/_sass/bootstrap/mixins/_caret.scss +69 -0
  167. data/_sass/bootstrap/mixins/_clearfix.scss +9 -0
  168. data/_sass/bootstrap/mixins/_color-mode.scss +21 -0
  169. data/_sass/bootstrap/mixins/_color-scheme.scss +7 -0
  170. data/_sass/bootstrap/mixins/_container.scss +11 -0
  171. data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
  172. data/_sass/bootstrap/mixins/_forms.scss +163 -0
  173. data/_sass/bootstrap/mixins/_gradients.scss +47 -0
  174. data/_sass/bootstrap/mixins/_grid.scss +151 -0
  175. data/_sass/bootstrap/mixins/_image.scss +16 -0
  176. data/_sass/bootstrap/mixins/_list-group.scss +26 -0
  177. data/_sass/bootstrap/mixins/_lists.scss +7 -0
  178. data/_sass/bootstrap/mixins/_pagination.scss +10 -0
  179. data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
  180. data/_sass/bootstrap/mixins/_resize.scss +6 -0
  181. data/_sass/bootstrap/mixins/_table-variants.scss +24 -0
  182. data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
  183. data/_sass/bootstrap/mixins/_transition.scss +26 -0
  184. data/_sass/bootstrap/mixins/_utilities.scss +97 -0
  185. data/_sass/bootstrap/mixins/_visually-hidden.scss +38 -0
  186. data/_sass/bootstrap/utilities/_api.scss +47 -0
  187. data/_sass/bootstrap/vendor/_rfs.scss +348 -0
  188. data/assets/css/base/stylesheet.min.scss +35 -0
  189. data/assets/icons/android-chrome-192.png +0 -0
  190. data/assets/icons/android-chrome-512.png +0 -0
  191. data/assets/icons/apple-touch-icon.png +0 -0
  192. data/assets/icons/favicon-16.png +0 -0
  193. data/assets/icons/favicon-32.png +0 -0
  194. data/assets/icons/favicon.ico +0 -0
  195. data/assets/icons/favicon.svg +1 -0
  196. data/assets/img/anaconda-symbolic.svg +1 -0
  197. data/assets/img/anaconda.svg +1 -0
  198. data/assets/img/base/centos-colors.gpl +55 -0
  199. data/assets/img/base/page-layout-default.png +0 -0
  200. data/assets/img/base/page-layout-default.svg +1158 -0
  201. data/assets/img/base/page-with-alert.png +0 -0
  202. data/assets/img/base/page-with-alert.svg +359 -0
  203. data/assets/img/base/page-with-announcement.png +0 -0
  204. data/assets/img/base/page-with-announcement.svg +499 -0
  205. data/assets/img/base/page-with-artwork.png +0 -0
  206. data/assets/img/base/page-with-artwork.svg +368 -0
  207. data/assets/img/base/page-with-backtotop.png +0 -0
  208. data/assets/img/base/page-with-backtotop.svg +275 -0
  209. data/assets/img/base/page-with-bits.png +0 -0
  210. data/assets/img/base/page-with-bits.svg +311 -0
  211. data/assets/img/base/page-with-breadcrumb.png +0 -0
  212. data/assets/img/base/page-with-breadcrumb.svg +676 -0
  213. data/assets/img/base/page-with-breakingnews.png +0 -0
  214. data/assets/img/base/page-with-breakingnews.svg +903 -0
  215. data/assets/img/base/page-with-color.png +0 -0
  216. data/assets/img/base/page-with-color.svg +57 -0
  217. data/assets/img/base/page-with-copyright.png +0 -0
  218. data/assets/img/base/page-with-copyright.svg +233 -0
  219. data/assets/img/base/page-with-copyvalue.png +0 -0
  220. data/assets/img/base/page-with-copyvalue.svg +57 -0
  221. data/assets/img/base/page-with-datatable.png +0 -0
  222. data/assets/img/base/page-with-datatable.svg +857 -0
  223. data/assets/img/base/page-with-event.png +0 -0
  224. data/assets/img/base/page-with-event.svg +522 -0
  225. data/assets/img/base/page-with-fontawesome.png +0 -0
  226. data/assets/img/base/page-with-fontawesome.svg +147 -0
  227. data/assets/img/base/page-with-heading.png +0 -0
  228. data/assets/img/base/page-with-heading.svg +57 -0
  229. data/assets/img/base/page-with-highlight.png +0 -0
  230. data/assets/img/base/page-with-highlight.svg +86 -0
  231. data/assets/img/base/page-with-link.png +0 -0
  232. data/assets/img/base/page-with-link.svg +395 -0
  233. data/assets/img/base/page-with-locales.png +0 -0
  234. data/assets/img/base/page-with-locales.svg +724 -0
  235. data/assets/img/base/page-with-navbar.png +0 -0
  236. data/assets/img/base/page-with-navbar.svg +438 -0
  237. data/assets/img/base/page-with-navindex.png +0 -0
  238. data/assets/img/base/page-with-navindex.svg +279 -0
  239. data/assets/img/base/page-with-ogp.png +0 -0
  240. data/assets/img/base/page-with-ogp.svg +368 -0
  241. data/assets/img/base/page-with-project.png +0 -0
  242. data/assets/img/base/page-with-project.svg +822 -0
  243. data/assets/img/base/page-with-shortcut.png +0 -0
  244. data/assets/img/base/page-with-shortcut.svg +233 -0
  245. data/assets/img/base/page-with-social.png +0 -0
  246. data/assets/img/base/page-with-social.svg +233 -0
  247. data/assets/img/base/page-with-title.png +0 -0
  248. data/assets/img/base/page-with-title.svg +584 -0
  249. data/assets/img/base/page-with-toc.png +0 -0
  250. data/assets/img/base/page-with-toc.svg +438 -0
  251. data/assets/img/base/screenshot-example-1200x600.png +0 -0
  252. data/assets/img/base/screenshot-example-1200x600.svg +114 -0
  253. data/assets/img/centos-dynamicmsg-logo.svg +1 -0
  254. data/assets/img/centos-dynamicmsg-type.svg +1 -0
  255. data/assets/img/centos-dynamicmsg-whitelogo.svg +1 -0
  256. data/assets/img/centos-dynamicmsg-whitetype.svg +1 -0
  257. data/assets/img/centos-gdm-whitelogo.svg +1 -0
  258. data/assets/img/centos-ipa-whiteheader.svg +1 -0
  259. data/assets/img/centos-logo-2bits.svg +1 -0
  260. data/assets/img/centos-logo.svg +1 -0
  261. data/assets/img/centos-message-logo.svg +1 -0
  262. data/assets/img/centos-motif.png +0 -0
  263. data/assets/img/centos-poweredby-logo.svg +1 -0
  264. data/assets/img/centos-social-share.png +0 -0
  265. data/assets/img/centos-symbol-2bits.svg +1 -0
  266. data/assets/img/centos-symbol.svg +1 -0
  267. data/assets/img/centos-type.svg +1 -0
  268. data/assets/img/centos-vertical-logo.svg +1 -0
  269. data/assets/img/centos-vertical-message-logo.svg +1 -0
  270. data/assets/img/centos-whitelogo.svg +1 -0
  271. data/assets/img/download/centos-linux-7-2009-screenshot-n.png +0 -0
  272. data/assets/img/download/centos-stream-8-screenshot-n.png +0 -0
  273. data/assets/img/download/centos-stream-9-screenshot-n.png +0 -0
  274. data/assets/img/download/distribution-release-screenshot-1.png +0 -0
  275. data/assets/img/download/distribution-release-screenshot-2.png +0 -0
  276. data/assets/img/download/distribution-release-screenshot-3.png +0 -0
  277. data/assets/img/download/distribution-release-screenshot-n.png +0 -0
  278. data/assets/img/download/distribution-release-screenshot-n.svg +134 -0
  279. data/assets/img/download/download.svg +421 -0
  280. data/assets/img/download/fig-the-downloads-cards-presentation-template.png +0 -0
  281. data/assets/img/people/page.svg +900 -0
  282. data/assets/img/people/page.webp +0 -0
  283. data/assets/img/people/username.webp +0 -0
  284. data/assets/img/sponsors/screenshot-sponsors-cards-layout.png +0 -0
  285. data/assets/img/sponsors/screenshot-sponsors-cards.png +0 -0
  286. data/assets/img/sponsors/screenshot-sponsors-carousel.png +0 -0
  287. data/assets/img/sponsors/screenshot-sponsors-default-layout.png +0 -0
  288. data/assets/img/sponsors/screenshot-sponsors-logo.png +0 -0
  289. data/assets/img/sponsors/sponsor-logo-1.png +0 -0
  290. data/assets/img/sponsors/sponsor-logo-2.png +0 -0
  291. data/assets/img/sponsors/sponsor-logo-3.png +0 -0
  292. data/assets/img/sponsors/sponsor-logo-4.png +0 -0
  293. data/assets/img/sponsors/sponsor-logo-5.png +0 -0
  294. data/assets/img/sponsors/sponsor-logo-6.png +0 -0
  295. data/assets/img/sponsors/sponsor-logo-7.png +0 -0
  296. data/assets/img/sponsors/sponsor-logo-8.png +0 -0
  297. data/assets/img/sponsors/sponsors-logo.svg +563 -0
  298. data/assets/js/base/backtotop.js +23 -0
  299. data/assets/js/base/copyvalue.js +251 -0
  300. data/assets/js/base/datatable.js +55 -0
  301. data/assets/js/base/highlight.js +6 -0
  302. data/assets/js/base/init-tooltips.js +5 -0
  303. data/assets/js/bootstrap.bundle.js +6312 -0
  304. data/assets/js/bootstrap.bundle.js.map +1 -0
  305. data/assets/js/bootstrap.bundle.min.js +7 -0
  306. data/assets/js/bootstrap.bundle.min.js.map +1 -0
  307. data/assets/js/bootstrap.esm.js +4447 -0
  308. data/assets/js/bootstrap.esm.js.map +1 -0
  309. data/assets/js/bootstrap.esm.min.js +7 -0
  310. data/assets/js/bootstrap.esm.min.js.map +1 -0
  311. data/assets/js/bootstrap.js +4494 -0
  312. data/assets/js/bootstrap.js.map +1 -0
  313. data/assets/js/bootstrap.min.js +7 -0
  314. data/assets/js/bootstrap.min.js.map +1 -0
  315. metadata +314 -1
@@ -0,0 +1,1042 @@
1
+ branding_colors:
2
+ - name: "Primary"
3
+ hex: "#A14F8C"
4
+ rgb: "161, 79, 140"
5
+ hsv: "315° / 51% / 63%"
6
+ text_color: "White"
7
+ text_color_hex: "#FFFFFF"
8
+ contrast_ratio: "5.23:1"
9
+ wcag_2_2_aa: true
10
+ wcag_2_2_aa_margin: "+0.73:1"
11
+ wcag_2_2_aaa: false
12
+ wcag_2_2_aaa_margin: "-1.77:1"
13
+ hue: "315°"
14
+ saturation: "51%"
15
+ lightness: "63%"
16
+ text_badge: "text-bg-centos-purple-500"
17
+ full_name: "$centos-purple"
18
+ - name: "Secondary"
19
+ hex: "#EFA724"
20
+ rgb: "239, 167, 36"
21
+ hsv: "39° / 85% / 94%"
22
+ text_color: "Black"
23
+ text_color_hex: "#000000"
24
+ contrast_ratio: "10.22:1"
25
+ wcag_2_2_aa: true
26
+ wcag_2_2_aa_margin: "+5.72:1"
27
+ wcag_2_2_aaa: true
28
+ wcag_2_2_aaa_margin: "+3.22:1"
29
+ hue: "39°"
30
+ saturation: "85%"
31
+ lightness: "94%"
32
+ text_badge: "text-bg-centos-orange-500"
33
+ full_name: "$centos-orange"
34
+ semantic_colors:
35
+ - name: "Success"
36
+ hex: "#4A8400"
37
+ rgb: "74, 132, 0"
38
+ hsv: "86° / 100% / 52%"
39
+ text_color: "White"
40
+ text_color_hex: "#FFFFFF"
41
+ contrast_ratio: "4.57:1"
42
+ wcag_2_2_aa: true
43
+ wcag_2_2_aa_margin: "+0.07:1"
44
+ wcag_2_2_aaa: false
45
+ wcag_2_2_aaa_margin: "-2.43:1"
46
+ hue: "86°"
47
+ saturation: "100%"
48
+ lightness: "52%"
49
+ text_badge: "text-bg-success"
50
+ - name: "Warning"
51
+ hex: "#C86A00"
52
+ rgb: "200, 106, 0"
53
+ hsv: "32° / 100% / 78%"
54
+ text_color: "Black"
55
+ text_color_hex: "#000000"
56
+ contrast_ratio: "5.52:1"
57
+ wcag_2_2_aa: true
58
+ wcag_2_2_aa_margin: "+1.02:1"
59
+ wcag_2_2_aaa: false
60
+ wcag_2_2_aaa_margin: "-1.48:1"
61
+ hue: "32°"
62
+ saturation: "100%"
63
+ lightness: "78%"
64
+ text_badge: "text-bg-warning"
65
+ - name: "Danger"
66
+ hex: "#C62828"
67
+ rgb: "198, 40, 40"
68
+ hsv: "0° / 80% / 78%"
69
+ text_color: "White"
70
+ text_color_hex: "#FFFFFF"
71
+ contrast_ratio: "5.62:1"
72
+ wcag_2_2_aa: true
73
+ wcag_2_2_aa_margin: "+1.12:1"
74
+ wcag_2_2_aaa: false
75
+ wcag_2_2_aaa_margin: "-1.38:1"
76
+ hue: "0°"
77
+ saturation: "80%"
78
+ lightness: "78%"
79
+ text_badge: "text-bg-danger"
80
+ - name: "Info"
81
+ hex: "#1976D2"
82
+ rgb: "25, 118, 210"
83
+ hsv: "210° / 88% / 82%"
84
+ text_color: "White"
85
+ text_color_hex: "#FFFFFF"
86
+ contrast_ratio: "4.60:1"
87
+ wcag_2_2_aa: true
88
+ wcag_2_2_aa_margin: "+0.10:1"
89
+ wcag_2_2_aaa: false
90
+ wcag_2_2_aaa_margin: "-2.40:1"
91
+ hue: "210°"
92
+ saturation: "88%"
93
+ lightness: "82%"
94
+ text_badge: "text-bg-info"
95
+ neutral_colors:
96
+ - name: "Light"
97
+ hex: "#F6EDF4"
98
+ rgb: "246, 237, 244"
99
+ hsv: "313° / 4% / 96%"
100
+ text_color: "Black"
101
+ text_color_hex: "#000000"
102
+ contrast_ratio: "18.34:1"
103
+ wcag_2_2_aa: true
104
+ wcag_2_2_aa_margin: "+13.84:1"
105
+ wcag_2_2_aaa: true
106
+ wcag_2_2_aaa_margin: "+11.34:1"
107
+ hue: "313°"
108
+ saturation: "4%"
109
+ lightness: "96%"
110
+ text_badge: "text-bg-light"
111
+ full_name: "$centos-light"
112
+ - name: "Dark"
113
+ hex: "#22061B"
114
+ rgb: "34, 6, 27"
115
+ hsv: "315° / 82% / 13%"
116
+ text_color: "White"
117
+ text_color_hex: "#FFFFFF"
118
+ contrast_ratio: "18.92:1"
119
+ wcag_2_2_aa: true
120
+ wcag_2_2_aa_margin: "+14.42:1"
121
+ wcag_2_2_aaa: true
122
+ wcag_2_2_aaa_margin: "+11.92:1"
123
+ hue: "315°"
124
+ saturation: "82%"
125
+ lightness: "13%"
126
+ text_badge: "text-bg-dark"
127
+ full_name: "$centos-dark"
128
+ purple_shades:
129
+ - shade: 50
130
+ hex: "#F6EDF4"
131
+ rgb: "246, 237, 244"
132
+ hsv: "313° / 4% / 96%"
133
+ text_color: "Black"
134
+ text_color_hex: "#000000"
135
+ contrast_ratio: "18.34:1"
136
+ wcag_2_2_aa: true
137
+ wcag_2_2_aa_margin: "+13.84:1"
138
+ wcag_2_2_aaa: true
139
+ wcag_2_2_aaa_margin: "+11.34:1"
140
+ hue: "313°"
141
+ saturation: "4%"
142
+ lightness: "96%"
143
+ text_badge: "text-bg-centos-purple-50"
144
+ full_name: "$centos-purple-50"
145
+ - shade: 100
146
+ hex: "#ECDCE8"
147
+ rgb: "236, 220, 232"
148
+ hsv: "315° / 7% / 93%"
149
+ text_color: "Black"
150
+ text_color_hex: "#000000"
151
+ contrast_ratio: "15.97:1"
152
+ wcag_2_2_aa: true
153
+ wcag_2_2_aa_margin: "+11.47:1"
154
+ wcag_2_2_aaa: true
155
+ wcag_2_2_aaa_margin: "+8.97:1"
156
+ hue: "315°"
157
+ saturation: "7%"
158
+ lightness: "93%"
159
+ text_badge: "text-bg-centos-purple-100"
160
+ full_name: "$centos-purple-100"
161
+ - shade: 200
162
+ hex: "#D9B9D1"
163
+ rgb: "217, 185, 209"
164
+ hsv: "315° / 15% / 85%"
165
+ text_color: "Black"
166
+ text_color_hex: "#000000"
167
+ contrast_ratio: "11.81:1"
168
+ wcag_2_2_aa: true
169
+ wcag_2_2_aa_margin: "+7.31:1"
170
+ wcag_2_2_aaa: true
171
+ wcag_2_2_aaa_margin: "+4.81:1"
172
+ hue: "315°"
173
+ saturation: "15%"
174
+ lightness: "85%"
175
+ text_badge: "text-bg-centos-purple-200"
176
+ full_name: "$centos-purple-200"
177
+ - shade: 300
178
+ hex: "#C795BA"
179
+ rgb: "199, 149, 186"
180
+ hsv: "316° / 25% / 78%"
181
+ text_color: "Black"
182
+ text_color_hex: "#000000"
183
+ contrast_ratio: "8.44:1"
184
+ wcag_2_2_aa: true
185
+ wcag_2_2_aa_margin: "+3.94:1"
186
+ wcag_2_2_aaa: true
187
+ wcag_2_2_aaa_margin: "+1.44:1"
188
+ hue: "316°"
189
+ saturation: "25%"
190
+ lightness: "78%"
191
+ text_badge: "text-bg-centos-purple-300"
192
+ full_name: "$centos-purple-300"
193
+ - shade: 400
194
+ hex: "#B472A3"
195
+ rgb: "180, 114, 163"
196
+ hsv: "315° / 37% / 71%"
197
+ text_color: "Black"
198
+ text_color_hex: "#000000"
199
+ contrast_ratio: "5.88:1"
200
+ wcag_2_2_aa: true
201
+ wcag_2_2_aa_margin: "+1.38:1"
202
+ wcag_2_2_aaa: false
203
+ wcag_2_2_aaa_margin: "-1.12:1"
204
+ hue: "315°"
205
+ saturation: "37%"
206
+ lightness: "71%"
207
+ text_badge: "text-bg-centos-purple-400"
208
+ full_name: "$centos-purple-400"
209
+ - shade: 500
210
+ hex: "#A14F8C"
211
+ rgb: "161, 79, 140"
212
+ hsv: "315° / 51% / 63%"
213
+ text_color: "White"
214
+ text_color_hex: "#FFFFFF"
215
+ contrast_ratio: "5.23:1"
216
+ wcag_2_2_aa: true
217
+ wcag_2_2_aa_margin: "+0.73:1"
218
+ wcag_2_2_aaa: false
219
+ wcag_2_2_aaa_margin: "-1.77:1"
220
+ hue: "315°"
221
+ saturation: "51%"
222
+ lightness: "63%"
223
+ text_badge: "text-bg-centos-purple-500"
224
+ full_name: "$centos-purple-500"
225
+ - shade: 600
226
+ hex: "#844173"
227
+ rgb: "132, 65, 115"
228
+ hsv: "315° / 51% / 52%"
229
+ text_color: "White"
230
+ text_color_hex: "#FFFFFF"
231
+ contrast_ratio: "7.04:1"
232
+ wcag_2_2_aa: true
233
+ wcag_2_2_aa_margin: "+2.54:1"
234
+ wcag_2_2_aaa: true
235
+ wcag_2_2_aaa_margin: "+0.04:1"
236
+ hue: "315°"
237
+ saturation: "51%"
238
+ lightness: "52%"
239
+ text_badge: "text-bg-centos-purple-600"
240
+ full_name: "$centos-purple-600"
241
+ - shade: 700
242
+ hex: "#67335A"
243
+ rgb: "103, 51, 90"
244
+ hsv: "315° / 50% / 40%"
245
+ text_color: "White"
246
+ text_color_hex: "#FFFFFF"
247
+ contrast_ratio: "9.55:1"
248
+ wcag_2_2_aa: true
249
+ wcag_2_2_aa_margin: "+5.05:1"
250
+ wcag_2_2_aaa: true
251
+ wcag_2_2_aaa_margin: "+2.55:1"
252
+ hue: "315°"
253
+ saturation: "50%"
254
+ lightness: "40%"
255
+ text_badge: "text-bg-centos-purple-700"
256
+ full_name: "$centos-purple-700"
257
+ - shade: 800
258
+ hex: "#4D2342"
259
+ rgb: "77, 35, 66"
260
+ hsv: "316° / 55% / 30%"
261
+ text_color: "White"
262
+ text_color_hex: "#FFFFFF"
263
+ contrast_ratio: "12.85:1"
264
+ wcag_2_2_aa: true
265
+ wcag_2_2_aa_margin: "+8.35:1"
266
+ wcag_2_2_aaa: true
267
+ wcag_2_2_aaa_margin: "+5.85:1"
268
+ hue: "316°"
269
+ saturation: "55%"
270
+ lightness: "30%"
271
+ text_badge: "text-bg-centos-purple-800"
272
+ full_name: "$centos-purple-800"
273
+ - shade: 900
274
+ hex: "#48113A"
275
+ rgb: "72, 17, 58"
276
+ hsv: "315° / 76% / 28%"
277
+ text_color: "White"
278
+ text_color_hex: "#FFFFFF"
279
+ contrast_ratio: "14.82:1"
280
+ wcag_2_2_aa: true
281
+ wcag_2_2_aa_margin: "+10.32:1"
282
+ wcag_2_2_aaa: true
283
+ wcag_2_2_aaa_margin: "+7.82:1"
284
+ hue: "315°"
285
+ saturation: "76%"
286
+ lightness: "28%"
287
+ text_badge: "text-bg-centos-purple-900"
288
+ full_name: "$centos-purple-900"
289
+ - shade: 950
290
+ hex: "#22061B"
291
+ rgb: "34, 6, 27"
292
+ hsv: "315° / 82% / 13%"
293
+ text_color: "White"
294
+ text_color_hex: "#FFFFFF"
295
+ contrast_ratio: "18.92:1"
296
+ wcag_2_2_aa: true
297
+ wcag_2_2_aa_margin: "+14.42:1"
298
+ wcag_2_2_aaa: true
299
+ wcag_2_2_aaa_margin: "+11.92:1"
300
+ hue: "315°"
301
+ saturation: "82%"
302
+ lightness: "13%"
303
+ text_badge: "text-bg-centos-purple-950"
304
+ full_name: "$centos-purple-950"
305
+ orange_shades:
306
+ - shade: 50
307
+ hex: "#FDF6E9"
308
+ rgb: "253, 246, 233"
309
+ hsv: "39° / 8% / 99%"
310
+ text_color: "Black"
311
+ text_color_hex: "#000000"
312
+ contrast_ratio: "19.54:1"
313
+ wcag_2_2_aa: true
314
+ wcag_2_2_aa_margin: "+15.04:1"
315
+ wcag_2_2_aaa: true
316
+ wcag_2_2_aaa_margin: "+12.54:1"
317
+ hue: "39°"
318
+ saturation: "8%"
319
+ lightness: "99%"
320
+ text_badge: "text-bg-centos-orange-50"
321
+ full_name: "$centos-orange-50"
322
+ - shade: 100
323
+ hex: "#FCEDD3"
324
+ rgb: "252, 237, 211"
325
+ hsv: "38° / 16% / 99%"
326
+ text_color: "Black"
327
+ text_color_hex: "#000000"
328
+ contrast_ratio: "18.19:1"
329
+ wcag_2_2_aa: true
330
+ wcag_2_2_aa_margin: "+13.69:1"
331
+ wcag_2_2_aaa: true
332
+ wcag_2_2_aaa_margin: "+11.19:1"
333
+ hue: "38°"
334
+ saturation: "16%"
335
+ lightness: "99%"
336
+ text_badge: "text-bg-centos-orange-100"
337
+ full_name: "$centos-orange-100"
338
+ - shade: 200
339
+ hex: "#F9DCA7"
340
+ rgb: "249, 220, 167"
341
+ hsv: "39° / 33% / 98%"
342
+ text_color: "Black"
343
+ text_color_hex: "#000000"
344
+ contrast_ratio: "15.82:1"
345
+ wcag_2_2_aa: true
346
+ wcag_2_2_aa_margin: "+11.32:1"
347
+ wcag_2_2_aaa: true
348
+ wcag_2_2_aaa_margin: "+8.82:1"
349
+ hue: "39°"
350
+ saturation: "33%"
351
+ lightness: "98%"
352
+ text_badge: "text-bg-centos-orange-200"
353
+ full_name: "$centos-orange-200"
354
+ - shade: 300
355
+ hex: "#F5CA7C"
356
+ rgb: "245, 202, 124"
357
+ hsv: "39° / 49% / 96%"
358
+ text_color: "Black"
359
+ text_color_hex: "#000000"
360
+ contrast_ratio: "13.62:1"
361
+ wcag_2_2_aa: true
362
+ wcag_2_2_aa_margin: "+9.12:1"
363
+ wcag_2_2_aaa: true
364
+ wcag_2_2_aaa_margin: "+6.62:1"
365
+ hue: "39°"
366
+ saturation: "49%"
367
+ lightness: "96%"
368
+ text_badge: "text-bg-centos-orange-300"
369
+ full_name: "$centos-orange-300"
370
+ - shade: 400
371
+ hex: "#F2B950"
372
+ rgb: "242, 185, 80"
373
+ hsv: "39° / 67% / 95%"
374
+ text_color: "Black"
375
+ text_color_hex: "#000000"
376
+ contrast_ratio: "11.83:1"
377
+ wcag_2_2_aa: true
378
+ wcag_2_2_aa_margin: "+7.33:1"
379
+ wcag_2_2_aaa: true
380
+ wcag_2_2_aaa_margin: "+4.83:1"
381
+ hue: "39°"
382
+ saturation: "67%"
383
+ lightness: "95%"
384
+ text_badge: "text-bg-centos-orange-400"
385
+ full_name: "$centos-orange-400"
386
+ - shade: 500
387
+ hex: "#EFA724"
388
+ rgb: "239, 167, 36"
389
+ hsv: "39° / 85% / 94%"
390
+ text_color: "Black"
391
+ text_color_hex: "#000000"
392
+ contrast_ratio: "10.22:1"
393
+ wcag_2_2_aa: true
394
+ wcag_2_2_aa_margin: "+5.72:1"
395
+ wcag_2_2_aaa: true
396
+ wcag_2_2_aaa_margin: "+3.22:1"
397
+ hue: "39°"
398
+ saturation: "85%"
399
+ lightness: "94%"
400
+ text_badge: "text-bg-centos-orange-500"
401
+ full_name: "$centos-orange-500"
402
+ - shade: 600
403
+ hex: "#D28D0F"
404
+ rgb: "210, 141, 15"
405
+ hsv: "39° / 93% / 82%"
406
+ text_color: "Black"
407
+ text_color_hex: "#000000"
408
+ contrast_ratio: "7.56:1"
409
+ wcag_2_2_aa: true
410
+ wcag_2_2_aa_margin: "+3.06:1"
411
+ wcag_2_2_aaa: true
412
+ wcag_2_2_aaa_margin: "+0.56:1"
413
+ hue: "39°"
414
+ saturation: "93%"
415
+ lightness: "82%"
416
+ text_badge: "text-bg-centos-orange-600"
417
+ full_name: "$centos-orange-600"
418
+ - shade: 700
419
+ hex: "#A36E0C"
420
+ rgb: "163, 110, 12"
421
+ hsv: "39° / 93% / 64%"
422
+ text_color: "Black"
423
+ text_color_hex: "#000000"
424
+ contrast_ratio: "4.79:1"
425
+ wcag_2_2_aa: true
426
+ wcag_2_2_aa_margin: "+0.29:1"
427
+ wcag_2_2_aaa: false
428
+ wcag_2_2_aaa_margin: "-2.21:1"
429
+ hue: "39°"
430
+ saturation: "93%"
431
+ lightness: "64%"
432
+ text_badge: "text-bg-centos-orange-700"
433
+ full_name: "$centos-orange-700"
434
+ - shade: 800
435
+ hex: "#7A5003"
436
+ rgb: "122, 80, 3"
437
+ hsv: "39° / 98% / 48%"
438
+ text_color: "White"
439
+ text_color_hex: "#FFFFFF"
440
+ contrast_ratio: "7.06:1"
441
+ wcag_2_2_aa: true
442
+ wcag_2_2_aa_margin: "+2.56:1"
443
+ wcag_2_2_aaa: true
444
+ wcag_2_2_aaa_margin: "+0.06:1"
445
+ hue: "39°"
446
+ saturation: "98%"
447
+ lightness: "48%"
448
+ text_badge: "text-bg-centos-orange-800"
449
+ full_name: "$centos-orange-800"
450
+ - shade: 900
451
+ hex: "#603E00"
452
+ rgb: "96, 62, 0"
453
+ hsv: "39° / 100% / 38%"
454
+ text_color: "White"
455
+ text_color_hex: "#FFFFFF"
456
+ contrast_ratio: "9.60:1"
457
+ wcag_2_2_aa: true
458
+ wcag_2_2_aa_margin: "+5.10:1"
459
+ wcag_2_2_aaa: true
460
+ wcag_2_2_aaa_margin: "+2.60:1"
461
+ hue: "39°"
462
+ saturation: "100%"
463
+ lightness: "38%"
464
+ text_badge: "text-bg-centos-orange-900"
465
+ full_name: "$centos-orange-900"
466
+ - shade: 950
467
+ hex: "#291A00"
468
+ rgb: "41, 26, 0"
469
+ hsv: "38° / 100% / 16%"
470
+ text_color: "White"
471
+ text_color_hex: "#FFFFFF"
472
+ contrast_ratio: "16.91:1"
473
+ wcag_2_2_aa: true
474
+ wcag_2_2_aa_margin: "+12.41:1"
475
+ wcag_2_2_aaa: true
476
+ wcag_2_2_aaa_margin: "+9.91:1"
477
+ hue: "38°"
478
+ saturation: "100%"
479
+ lightness: "16%"
480
+ text_badge: "text-bg-centos-orange-950"
481
+ full_name: "$centos-orange-950"
482
+ blue_shades:
483
+ - shade: 50
484
+ hex: "#E9E9F1"
485
+ rgb: "233, 233, 241"
486
+ hsv: "240° / 3% / 95%"
487
+ text_color: "Black"
488
+ text_color_hex: "#000000"
489
+ contrast_ratio: "17.39:1"
490
+ wcag_2_2_aa: true
491
+ wcag_2_2_aa_margin: "+12.89:1"
492
+ wcag_2_2_aaa: true
493
+ wcag_2_2_aaa_margin: "+10.39:1"
494
+ hue: "240°"
495
+ saturation: "3%"
496
+ lightness: "95%"
497
+ text_badge: "text-bg-centos-blue-50"
498
+ full_name: "$centos-blue-50"
499
+ - shade: 100
500
+ hex: "#D4D3E4"
501
+ rgb: "212, 211, 228"
502
+ hsv: "244° / 7% / 89%"
503
+ text_color: "Black"
504
+ text_color_hex: "#000000"
505
+ contrast_ratio: "14.24:1"
506
+ wcag_2_2_aa: true
507
+ wcag_2_2_aa_margin: "+9.74:1"
508
+ wcag_2_2_aaa: true
509
+ wcag_2_2_aaa_margin: "+7.24:1"
510
+ hue: "244°"
511
+ saturation: "7%"
512
+ lightness: "89%"
513
+ text_badge: "text-bg-centos-blue-100"
514
+ full_name: "$centos-blue-100"
515
+ - shade: 200
516
+ hex: "#A8A8C9"
517
+ rgb: "168, 168, 201"
518
+ hsv: "240° / 16% / 79%"
519
+ text_color: "Black"
520
+ text_color_hex: "#000000"
521
+ contrast_ratio: "9.11:1"
522
+ wcag_2_2_aa: true
523
+ wcag_2_2_aa_margin: "+4.61:1"
524
+ wcag_2_2_aaa: true
525
+ wcag_2_2_aaa_margin: "+2.11:1"
526
+ hue: "240°"
527
+ saturation: "16%"
528
+ lightness: "79%"
529
+ text_badge: "text-bg-centos-blue-200"
530
+ full_name: "$centos-blue-200"
531
+ - shade: 300
532
+ hex: "#7D7CAD"
533
+ rgb: "125, 124, 173"
534
+ hsv: "241° / 28% / 68%"
535
+ text_color: "Black"
536
+ text_color_hex: "#000000"
537
+ contrast_ratio: "5.36:1"
538
+ wcag_2_2_aa: true
539
+ wcag_2_2_aa_margin: "+0.86:1"
540
+ wcag_2_2_aaa: false
541
+ wcag_2_2_aaa_margin: "-1.64:1"
542
+ hue: "241°"
543
+ saturation: "28%"
544
+ lightness: "68%"
545
+ text_badge: "text-bg-centos-blue-300"
546
+ full_name: "$centos-blue-300"
547
+ - shade: 400
548
+ hex: "#515192"
549
+ rgb: "81, 81, 146"
550
+ hsv: "240° / 45% / 57%"
551
+ text_color: "White"
552
+ text_color_hex: "#FFFFFF"
553
+ contrast_ratio: "7.14:1"
554
+ wcag_2_2_aa: true
555
+ wcag_2_2_aa_margin: "+2.64:1"
556
+ wcag_2_2_aaa: true
557
+ wcag_2_2_aaa_margin: "+0.14:1"
558
+ hue: "240°"
559
+ saturation: "45%"
560
+ lightness: "57%"
561
+ text_badge: "text-bg-centos-blue-400"
562
+ full_name: "$centos-blue-400"
563
+ - shade: 500
564
+ hex: "#262577"
565
+ rgb: "38, 37, 119"
566
+ hsv: "241° / 69% / 47%"
567
+ text_color: "White"
568
+ text_color_hex: "#FFFFFF"
569
+ contrast_ratio: "13.02:1"
570
+ wcag_2_2_aa: true
571
+ wcag_2_2_aa_margin: "+8.52:1"
572
+ wcag_2_2_aaa: true
573
+ wcag_2_2_aaa_margin: "+6.02:1"
574
+ hue: "241°"
575
+ saturation: "69%"
576
+ lightness: "47%"
577
+ text_badge: "text-bg-centos-blue-500"
578
+ full_name: "$centos-blue-500"
579
+ - shade: 600
580
+ hex: "#201F63"
581
+ rgb: "32, 31, 99"
582
+ hsv: "241° / 69% / 39%"
583
+ text_color: "White"
584
+ text_color_hex: "#FFFFFF"
585
+ contrast_ratio: "14.61:1"
586
+ wcag_2_2_aa: true
587
+ wcag_2_2_aa_margin: "+10.11:1"
588
+ wcag_2_2_aaa: true
589
+ wcag_2_2_aaa_margin: "+7.61:1"
590
+ hue: "241°"
591
+ saturation: "69%"
592
+ lightness: "39%"
593
+ text_badge: "text-bg-centos-blue-600"
594
+ full_name: "$centos-blue-600"
595
+ - shade: 700
596
+ hex: "#19194F"
597
+ rgb: "25, 25, 79"
598
+ hsv: "240° / 68% / 31%"
599
+ text_color: "White"
600
+ text_color_hex: "#FFFFFF"
601
+ contrast_ratio: "16.24:1"
602
+ wcag_2_2_aa: true
603
+ wcag_2_2_aa_margin: "+11.74:1"
604
+ wcag_2_2_aaa: true
605
+ wcag_2_2_aaa_margin: "+9.24:1"
606
+ hue: "240°"
607
+ saturation: "68%"
608
+ lightness: "31%"
609
+ text_badge: "text-bg-centos-blue-700"
610
+ full_name: "$centos-blue-700"
611
+ - shade: 800
612
+ hex: "#11103D"
613
+ rgb: "17, 16, 61"
614
+ hsv: "241° / 74% / 24%"
615
+ text_color: "White"
616
+ text_color_hex: "#FFFFFF"
617
+ contrast_ratio: "18.02:1"
618
+ wcag_2_2_aa: true
619
+ wcag_2_2_aa_margin: "+13.52:1"
620
+ wcag_2_2_aaa: true
621
+ wcag_2_2_aaa_margin: "+11.02:1"
622
+ hue: "241°"
623
+ saturation: "74%"
624
+ lightness: "24%"
625
+ text_badge: "text-bg-centos-blue-800"
626
+ full_name: "$centos-blue-800"
627
+ - shade: 900
628
+ hex: "#030246"
629
+ rgb: "3, 2, 70"
630
+ hsv: "241° / 97% / 27%"
631
+ text_color: "White"
632
+ text_color_hex: "#FFFFFF"
633
+ contrast_ratio: "19.07:1"
634
+ wcag_2_2_aa: true
635
+ wcag_2_2_aa_margin: "+14.57:1"
636
+ wcag_2_2_aaa: true
637
+ wcag_2_2_aaa_margin: "+12.07:1"
638
+ hue: "241°"
639
+ saturation: "97%"
640
+ lightness: "27%"
641
+ text_badge: "text-bg-centos-blue-900"
642
+ full_name: "$centos-blue-900"
643
+ - shade: 950
644
+ hex: "#000029"
645
+ rgb: "0, 0, 41"
646
+ hsv: "240° / 100% / 16%"
647
+ text_color: "White"
648
+ text_color_hex: "#FFFFFF"
649
+ contrast_ratio: "20.35:1"
650
+ wcag_2_2_aa: true
651
+ wcag_2_2_aa_margin: "+15.85:1"
652
+ wcag_2_2_aaa: true
653
+ wcag_2_2_aaa_margin: "+13.35:1"
654
+ hue: "240°"
655
+ saturation: "100%"
656
+ lightness: "16%"
657
+ text_badge: "text-bg-centos-blue-950"
658
+ full_name: "$centos-blue-950"
659
+ green_shades:
660
+ - shade: 50
661
+ hex: "#F5FAEA"
662
+ rgb: "245, 250, 234"
663
+ hsv: "79° / 6% / 98%"
664
+ text_color: "Black"
665
+ text_color_hex: "#000000"
666
+ contrast_ratio: "19.74:1"
667
+ wcag_2_2_aa: true
668
+ wcag_2_2_aa_margin: "+15.24:1"
669
+ wcag_2_2_aaa: true
670
+ wcag_2_2_aaa_margin: "+12.74:1"
671
+ hue: "79°"
672
+ saturation: "6%"
673
+ lightness: "98%"
674
+ text_badge: "text-bg-centos-green-50"
675
+ full_name: "$centos-green-50"
676
+ - shade: 100
677
+ hex: "#EBF5D4"
678
+ rgb: "235, 245, 212"
679
+ hsv: "78° / 13% / 96%"
680
+ text_color: "Black"
681
+ text_color_hex: "#000000"
682
+ contrast_ratio: "18.54:1"
683
+ wcag_2_2_aa: true
684
+ wcag_2_2_aa_margin: "+14.04:1"
685
+ wcag_2_2_aaa: true
686
+ wcag_2_2_aaa_margin: "+11.54:1"
687
+ hue: "78°"
688
+ saturation: "13%"
689
+ lightness: "96%"
690
+ text_badge: "text-bg-centos-green-100"
691
+ full_name: "$centos-green-100"
692
+ - shade: 200
693
+ hex: "#D7EBAA"
694
+ rgb: "215, 235, 170"
695
+ hsv: "78° / 28% / 92%"
696
+ text_color: "Black"
697
+ text_color_hex: "#000000"
698
+ contrast_ratio: "16.35:1"
699
+ wcag_2_2_aa: true
700
+ wcag_2_2_aa_margin: "+11.85:1"
701
+ wcag_2_2_aaa: true
702
+ wcag_2_2_aaa_margin: "+9.35:1"
703
+ hue: "78°"
704
+ saturation: "28%"
705
+ lightness: "92%"
706
+ text_badge: "text-bg-centos-green-200"
707
+ full_name: "$centos-green-200"
708
+ - shade: 300
709
+ hex: "#C4E17F"
710
+ rgb: "196, 225, 127"
711
+ hsv: "78° / 44% / 88%"
712
+ text_color: "Black"
713
+ text_color_hex: "#000000"
714
+ contrast_ratio: "14.42:1"
715
+ wcag_2_2_aa: true
716
+ wcag_2_2_aa_margin: "+9.92:1"
717
+ wcag_2_2_aaa: true
718
+ wcag_2_2_aaa_margin: "+7.42:1"
719
+ hue: "78°"
720
+ saturation: "44%"
721
+ lightness: "88%"
722
+ text_badge: "text-bg-centos-green-300"
723
+ full_name: "$centos-green-300"
724
+ - shade: 400
725
+ hex: "#B0D755"
726
+ rgb: "176, 215, 85"
727
+ hsv: "78° / 60% / 84%"
728
+ text_color: "Black"
729
+ text_color_hex: "#000000"
730
+ contrast_ratio: "12.70:1"
731
+ wcag_2_2_aa: true
732
+ wcag_2_2_aa_margin: "+8.20:1"
733
+ wcag_2_2_aaa: true
734
+ wcag_2_2_aaa_margin: "+5.70:1"
735
+ hue: "78°"
736
+ saturation: "60%"
737
+ lightness: "84%"
738
+ text_badge: "text-bg-centos-green-400"
739
+ full_name: "$centos-green-400"
740
+ - shade: 500
741
+ hex: "#9CCD2A"
742
+ rgb: "156, 205, 42"
743
+ hsv: "78° / 80% / 80%"
744
+ text_color: "Black"
745
+ text_color_hex: "#000000"
746
+ contrast_ratio: "11.18:1"
747
+ wcag_2_2_aa: true
748
+ wcag_2_2_aa_margin: "+6.68:1"
749
+ wcag_2_2_aaa: true
750
+ wcag_2_2_aaa_margin: "+4.18:1"
751
+ hue: "78°"
752
+ saturation: "80%"
753
+ lightness: "80%"
754
+ text_badge: "text-bg-centos-green-500"
755
+ full_name: "$centos-green-500"
756
+ - shade: 600
757
+ hex: "#80A822"
758
+ rgb: "128, 168, 34"
759
+ hsv: "78° / 80% / 66%"
760
+ text_color: "Black"
761
+ text_color_hex: "#000000"
762
+ contrast_ratio: "7.54:1"
763
+ wcag_2_2_aa: true
764
+ wcag_2_2_aa_margin: "+3.04:1"
765
+ wcag_2_2_aaa: true
766
+ wcag_2_2_aaa_margin: "+0.54:1"
767
+ hue: "78°"
768
+ saturation: "80%"
769
+ lightness: "66%"
770
+ text_badge: "text-bg-centos-green-600"
771
+ full_name: "$centos-green-600"
772
+ - shade: 700
773
+ hex: "#6D901D"
774
+ rgb: "109, 144, 29"
775
+ hsv: "78° / 80% / 56%"
776
+ text_color: "Black"
777
+ text_color_hex: "#000000"
778
+ contrast_ratio: "5.66:1"
779
+ wcag_2_2_aa: true
780
+ wcag_2_2_aa_margin: "+1.16:1"
781
+ wcag_2_2_aaa: false
782
+ wcag_2_2_aaa_margin: "-1.34:1"
783
+ hue: "78°"
784
+ saturation: "80%"
785
+ lightness: "56%"
786
+ text_badge: "text-bg-centos-green-700"
787
+ full_name: "$centos-green-700"
788
+ - shade: 800
789
+ hex: "#4A6210"
790
+ rgb: "74, 98, 16"
791
+ hsv: "78° / 84% / 38%"
792
+ text_color: "White"
793
+ text_color_hex: "#FFFFFF"
794
+ contrast_ratio: "6.89:1"
795
+ wcag_2_2_aa: true
796
+ wcag_2_2_aa_margin: "+2.39:1"
797
+ wcag_2_2_aaa: false
798
+ wcag_2_2_aaa_margin: "-0.11:1"
799
+ hue: "78°"
800
+ saturation: "84%"
801
+ lightness: "38%"
802
+ text_badge: "text-bg-centos-green-800"
803
+ full_name: "$centos-green-800"
804
+ - shade: 900
805
+ hex: "#3F5A00"
806
+ rgb: "63, 90, 0"
807
+ hsv: "78° / 100% / 35%"
808
+ text_color: "White"
809
+ text_color_hex: "#FFFFFF"
810
+ contrast_ratio: "7.85:1"
811
+ wcag_2_2_aa: true
812
+ wcag_2_2_aa_margin: "+3.35:1"
813
+ wcag_2_2_aaa: true
814
+ wcag_2_2_aaa_margin: "+0.85:1"
815
+ hue: "78°"
816
+ saturation: "100%"
817
+ lightness: "35%"
818
+ text_badge: "text-bg-centos-green-900"
819
+ full_name: "$centos-green-900"
820
+ - shade: 950
821
+ hex: "#1D2900"
822
+ rgb: "29, 41, 0"
823
+ hsv: "78° / 100% / 16%"
824
+ text_color: "White"
825
+ text_color_hex: "#FFFFFF"
826
+ contrast_ratio: "15.33:1"
827
+ wcag_2_2_aa: true
828
+ wcag_2_2_aa_margin: "+10.83:1"
829
+ wcag_2_2_aaa: true
830
+ wcag_2_2_aaa_margin: "+8.33:1"
831
+ hue: "78°"
832
+ saturation: "100%"
833
+ lightness: "16%"
834
+ text_badge: "text-bg-centos-green-950"
835
+ full_name: "$centos-green-950"
836
+ palette:
837
+ - name: "centos-purple"
838
+ hex: "#A14F8C"
839
+ rgb: "161, 79, 140"
840
+ hsv: "315° / 51% / 63%"
841
+ text_color: "White"
842
+ text_color_hex: "#FFFFFF"
843
+ contrast_ratio: "5.23:1"
844
+ wcag_2_2_aa: true
845
+ wcag_2_2_aa_margin: "+0.73:1"
846
+ wcag_2_2_aaa: false
847
+ wcag_2_2_aaa_margin: "-1.77:1"
848
+ hue: "315°"
849
+ saturation: "51%"
850
+ lightness: "63%"
851
+ text_badge: "text-bg-centos-purple"
852
+ contrast_white: "5.23:1"
853
+ contrast_black: "4.01:1"
854
+ shades:
855
+ - 50
856
+ - 100
857
+ - 200
858
+ - 300
859
+ - 400
860
+ - 500
861
+ - 600
862
+ - 700
863
+ - 800
864
+ - 900
865
+ - 950
866
+ - name: "centos-orange"
867
+ hex: "#EFA724"
868
+ rgb: "239, 167, 36"
869
+ hsv: "39° / 85% / 94%"
870
+ text_color: "Black"
871
+ text_color_hex: "#000000"
872
+ contrast_ratio: "10.22:1"
873
+ wcag_2_2_aa: true
874
+ wcag_2_2_aa_margin: "+5.72:1"
875
+ wcag_2_2_aaa: true
876
+ wcag_2_2_aaa_margin: "+3.22:1"
877
+ hue: "39°"
878
+ saturation: "85%"
879
+ lightness: "94%"
880
+ text_badge: "text-bg-centos-orange"
881
+ contrast_white: "2.05:1"
882
+ contrast_black: "10.22:1"
883
+ shades:
884
+ - 50
885
+ - 100
886
+ - 200
887
+ - 300
888
+ - 400
889
+ - 500
890
+ - 600
891
+ - 700
892
+ - 800
893
+ - 900
894
+ - 950
895
+ - name: "centos-blue"
896
+ hex: "#262577"
897
+ rgb: "38, 37, 119"
898
+ hsv: "241° / 69% / 47%"
899
+ text_color: "White"
900
+ text_color_hex: "#FFFFFF"
901
+ contrast_ratio: "13.02:1"
902
+ wcag_2_2_aa: true
903
+ wcag_2_2_aa_margin: "+8.52:1"
904
+ wcag_2_2_aaa: true
905
+ wcag_2_2_aaa_margin: "+6.02:1"
906
+ hue: "241°"
907
+ saturation: "69%"
908
+ lightness: "47%"
909
+ text_badge: "text-bg-centos-blue"
910
+ contrast_white: "13.02:1"
911
+ contrast_black: "1.61:1"
912
+ shades:
913
+ - 50
914
+ - 100
915
+ - 200
916
+ - 300
917
+ - 400
918
+ - 500
919
+ - 600
920
+ - 700
921
+ - 800
922
+ - 900
923
+ - 950
924
+ - name: "centos-green"
925
+ hex: "#9CCD2A"
926
+ rgb: "156, 205, 42"
927
+ hsv: "78° / 80% / 80%"
928
+ text_color: "Black"
929
+ text_color_hex: "#000000"
930
+ contrast_ratio: "11.18:1"
931
+ wcag_2_2_aa: true
932
+ wcag_2_2_aa_margin: "+6.68:1"
933
+ wcag_2_2_aaa: true
934
+ wcag_2_2_aaa_margin: "+4.18:1"
935
+ hue: "78°"
936
+ saturation: "80%"
937
+ lightness: "80%"
938
+ text_badge: "text-bg-centos-green"
939
+ contrast_white: "1.88:1"
940
+ contrast_black: "11.18:1"
941
+ shades:
942
+ - 50
943
+ - 100
944
+ - 200
945
+ - 300
946
+ - 400
947
+ - 500
948
+ - 600
949
+ - 700
950
+ - 800
951
+ - 900
952
+ - 950
953
+ all_shades:
954
+ - collection: "purple_shades"
955
+ - collection: "orange_shades"
956
+ - collection: "blue_shades"
957
+ - collection: "green_shades"
958
+ color_pairings:
959
+ - background: "centos-purple-50"
960
+ primary_accent: "centos-purple-600"
961
+ secondary_accent: "centos-orange-600"
962
+ compatibility_icon: "fa-circle-check"
963
+ compatibility_rating: "Good"
964
+ notes: "Light background: dark purple accent (7.01:1) with bold orange secondary"
965
+ - background: "centos-purple-600"
966
+ primary_accent: "centos-purple-50"
967
+ secondary_accent: "centos-orange-50"
968
+ compatibility_icon: "fa-circle-check"
969
+ compatibility_rating: "Good"
970
+ notes: "Dark background: light accents (8.7:1 + 14:1) for clear visual hierarchy"
971
+ - background: "centos-orange-50"
972
+ primary_accent: "centos-orange-700"
973
+ secondary_accent: "centos-purple-600"
974
+ compatibility_icon: "fa-circle-check"
975
+ compatibility_rating: "Good"
976
+ notes: "Light background: bold orange accent (4.79:1) with purple secondary"
977
+ - background: "centos-blue-100"
978
+ primary_accent: "centos-blue-700"
979
+ secondary_accent: "centos-green-700"
980
+ compatibility_icon: "fa-circle-check"
981
+ compatibility_rating: "Good"
982
+ notes: "Light background: dark blue (13.4:1) and green accents for information"
983
+ - background: "centos-blue-700"
984
+ primary_accent: "centos-blue-100"
985
+ secondary_accent: "centos-green-100"
986
+ compatibility_icon: "fa-circle-check"
987
+ compatibility_rating: "Good"
988
+ notes: "Dark background: light accents (13.4:1 + 16.4:1) for urgent emphasis"
989
+ shade_selections:
990
+ - color_family: "Purple"
991
+ light_50_100: "centos-purple-50, centos-purple-100 (subtle backgrounds)"
992
+ light_300_400: "centos-purple-300, centos-purple-400 (medium backgrounds)"
993
+ main_500: "centos-purple-500 (brand primary)"
994
+ dark_600_700: "centos-purple-600, centos-purple-700 (bold text/accents)"
995
+ - color_family: "Orange"
996
+ light_50_100: "centos-orange-50, centos-orange-100 (subtle backgrounds)"
997
+ light_300_400: "centos-orange-300, centos-orange-400 (medium backgrounds)"
998
+ main_500: "centos-orange-500 (brand secondary)"
999
+ dark_600_700: "centos-orange-600, centos-orange-700 (bold text/accents)"
1000
+ - color_family: "Blue"
1001
+ light_50_100: "centos-blue-50, centos-blue-100 (information backgrounds)"
1002
+ light_300_400: "centos-blue-300, centos-blue-400 (medium emphasis)"
1003
+ main_500: "centos-blue-500 (primary blue)"
1004
+ dark_600_700: "centos-blue-600, centos-blue-700 (bold information)"
1005
+ - color_family: "Green"
1006
+ light_50_100: "centos-green-50, centos-green-100 (success backgrounds)"
1007
+ light_300_400: "centos-green-300, centos-green-400 (medium success)"
1008
+ main_500: "centos-green-500 (primary green)"
1009
+ dark_600_700: "centos-green-600, centos-green-700 (bold success)"
1010
+ base_colors:
1011
+ - name: "Purple"
1012
+ hex: "#A14F8C"
1013
+ color_name: "Purple"
1014
+ shade_name: "centos-purple-500"
1015
+ light_bg_contrast: "5.23:1"
1016
+ light_bg_status: true
1017
+ dark_bg_contrast: "5.23:1"
1018
+ dark_bg_status: true
1019
+ - name: "Orange"
1020
+ hex: "#EFA724"
1021
+ color_name: "Orange"
1022
+ shade_name: "centos-orange-500"
1023
+ light_bg_contrast: "2.05:1"
1024
+ light_bg_status: false
1025
+ dark_bg_contrast: "10.22:1"
1026
+ dark_bg_status: true
1027
+ - name: "Blue"
1028
+ hex: "#262577"
1029
+ color_name: "Blue"
1030
+ shade_name: "centos-blue-500"
1031
+ light_bg_contrast: "13.02:1"
1032
+ light_bg_status: true
1033
+ dark_bg_contrast: "1.61:1"
1034
+ dark_bg_status: false
1035
+ - name: "Green"
1036
+ hex: "#9CCD2A"
1037
+ color_name: "Green"
1038
+ shade_name: "centos-green-500"
1039
+ light_bg_contrast: "1.88:1"
1040
+ light_bg_status: false
1041
+ dark_bg_contrast: "11.18:1"
1042
+ dark_bg_status: true