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,1036 @@
1
+ ---
2
+ title: Color Component Configuration
3
+ description: >-
4
+ Schema for configuring the 'Color' component palette system. This component defines
5
+ the complete CentOS color palette including branding colors, semantic status colors,
6
+ neutral colors, and 44 shade variants (11 each for purple, orange, blue, green).
7
+ All colors are validated for WCAG 2.2 accessibility compliance with documented
8
+ contrast ratios and compliance flags.
9
+ type: object
10
+
11
+ $defs:
12
+ # Reusable format patterns
13
+ hexColor:
14
+ type: string
15
+ pattern: "^#[0-9A-Fa-f]{6}$"
16
+ description: Hexadecimal color code (#RRGGBB format)
17
+
18
+ rgbValue:
19
+ type: string
20
+ pattern: "^\\d{1,3}, \\d{1,3}, \\d{1,3}$"
21
+ description: RGB representation as comma-separated values (0-255 per component)
22
+
23
+ contrastRatio:
24
+ type: string
25
+ pattern: "^\\d+\\.\\d{2}:1$"
26
+ description: WCAG 2.2 contrast ratio (X.XX:1 format)
27
+
28
+ contrastMargin:
29
+ type: string
30
+ pattern: "^[+-]\\d+\\.\\d{2}:1$"
31
+ description: Margin from accessibility threshold (±X.XX:1 format)
32
+
33
+ textColorEnum:
34
+ type: string
35
+ enum:
36
+ - White
37
+ - Black
38
+ description: Recommended text color for optimal contrast
39
+
40
+ shadeNumberEnum:
41
+ type: string
42
+ enum:
43
+ - "50"
44
+ - "100"
45
+ - "200"
46
+ - "300"
47
+ - "400"
48
+ - "500"
49
+ - "600"
50
+ - "700"
51
+ - "800"
52
+ - "900"
53
+ - "950"
54
+ description: Shade identifier (50=lightest, 950=darkest)
55
+
56
+ properties:
57
+ with_color:
58
+ type: boolean
59
+ default: true
60
+ description: >-
61
+ Controls the visibility of the Color component documentation and palette system.
62
+ Set to `true` (default) to display the complete color palette documentation
63
+ including branding, semantic, neutral, and shade color tables with WCAG 2.2
64
+ accessibility compliance information. Set to `false` to hide the color component
65
+ documentation entirely.
66
+
67
+ with_color_data:
68
+ type: object
69
+ default: {}
70
+ description: >-
71
+ The color palette data object containing all 52 CentOS colors organized into
72
+ 11 collections: branding colors, semantic colors, neutral colors, and shade
73
+ variants for purple, orange, blue, and green. Each color includes WCAG 2.2
74
+ contrast ratios, accessibility compliance flags, and text color recommendations.
75
+ properties:
76
+ branding_colors:
77
+ type: array
78
+ description: >-
79
+ Array of brand-identity colors (primary purple and secondary orange) that
80
+ establish visual foundation and hierarchy while maintaining professional coherence.
81
+ items:
82
+ type: object
83
+ properties:
84
+ name:
85
+ type: string
86
+ description: >-
87
+ The descriptive name of the branding color (e.g., "Primary", "Secondary").
88
+ Used for documentation and human-readable references in both code and design systems.
89
+ hex:
90
+ $ref: "#/$defs/hexColor"
91
+ description: >-
92
+ Hexadecimal representation of the branding color used in CSS, HTML, and design tools.
93
+ Example: #A54C93 for CentOS primary purple.
94
+ rgb:
95
+ $ref: "#/$defs/rgbValue"
96
+ description: >-
97
+ RGB representation as comma-separated values (e.g., "165, 76, 147").
98
+ Each component ranges from 0-255. Useful for cross-platform color specifications.
99
+ hue:
100
+ type: string
101
+ description: >-
102
+ Hue component of the color in degrees (0-360°). Represents the color family
103
+ on the color wheel (e.g., 315° for purple). Useful for understanding color
104
+ relationships and creating color variations.
105
+ saturation:
106
+ type: string
107
+ description: >-
108
+ Saturation component as a percentage (0-100%). Represents color intensity
109
+ and vibrancy. Higher values are more saturated/vivid; lower values appear
110
+ more muted or grayish.
111
+ lightness:
112
+ type: string
113
+ description: >-
114
+ Lightness component as a percentage (0-100%). Represents brightness level.
115
+ Used in HSL color space for understanding perceptual brightness independent
116
+ of hue and saturation.
117
+ hsv:
118
+ type: string
119
+ description: >-
120
+ Hue, Saturation, Value representation (e.g., "312° / 54% / 65%").
121
+ Useful for understanding color psychology and visual perception. HSV helps designers
122
+ understand the perceptual qualities of the color (hue=color family, saturation=intensity, value=brightness).
123
+ text_color:
124
+ $ref: "#/$defs/textColorEnum"
125
+ description: >-
126
+ Recommended text color (White or Black) for optimal readability and accessibility.
127
+ "White" for dark backgrounds, "Black" for light backgrounds.
128
+ text_color_hex:
129
+ $ref: "#/$defs/hexColor"
130
+ description: >-
131
+ Hexadecimal code of the recommended text color. Used to calculate contrast ratio
132
+ and verify WCAG compliance for accessibility requirements.
133
+ text_badge:
134
+ type: string
135
+ description: >-
136
+ Bootstrap utility class for automatic text/background pairing that ensures
137
+ proper contrast and accessibility. Example: "text-bg-centos-purple-500" or "text-bg-primary".
138
+ contrast_ratio:
139
+ $ref: "#/$defs/contrastRatio"
140
+ description: >-
141
+ WCAG 2.2 contrast ratio between the background color and recommended text color.
142
+ Formatted as X.XX:1. Example: 5.18:1 indicates the lighter color is 5.18 times brighter
143
+ than the darker color, meeting AA accessibility standards (4.5:1 minimum).
144
+ wcag_2_2_aa:
145
+ type: boolean
146
+ description: >-
147
+ Boolean flag indicating WCAG 2.2 Level AA compliance (4.5:1 minimum contrast).
148
+ AA is the standard accessibility level required for legal compliance in many jurisdictions.
149
+ True means this color pair meets the AA threshold; False means it does not.
150
+ wcag_2_2_aa_margin:
151
+ $ref: "#/$defs/contrastMargin"
152
+ description: >-
153
+ Distance from the AA threshold (4.5:1). Positive values exceed the standard by that amount;
154
+ negative values indicate failure to meet AA. Example: +0.68:1 means 0.68 points above the minimum.
155
+ wcag_2_2_aaa:
156
+ type: boolean
157
+ description: >-
158
+ Boolean flag indicating WCAG 2.2 Level AAA compliance (7.0:1 minimum contrast).
159
+ AAA is enhanced accessibility for users with low vision or color deficiency.
160
+ True means this color pair exceeds AAA standards; False means it meets AA but not AAA.
161
+ wcag_2_2_aaa_margin:
162
+ $ref: "#/$defs/contrastMargin"
163
+ description: >-
164
+ Distance from the AAA threshold (7.0:1). Positive values exceed the enhanced standard;
165
+ negative values indicate it does not meet AAA (though may still meet AA).
166
+ Example: -1.82:1 means 1.82 points below the AAA minimum.
167
+ required:
168
+ - name
169
+ - hex
170
+ - text_color_hex
171
+ - contrast_ratio
172
+ - wcag_2_2_aa
173
+ - wcag_2_2_aaa
174
+ additionalProperties: false
175
+
176
+ semantic_colors:
177
+ type: array
178
+ description: >-
179
+ Array of semantic status colors (Success, Warning, Danger, Info) that communicate
180
+ system state following ISO 3864 safety standards. Never use color alone—always
181
+ combine with icons or text.
182
+ items:
183
+ type: object
184
+ properties:
185
+ name:
186
+ type: string
187
+ enum:
188
+ - Success
189
+ - Warning
190
+ - Danger
191
+ - Info
192
+ description: >-
193
+ The semantic meaning of the color. Success indicates positive outcomes,
194
+ Warning captures attention for caution, Danger signals urgency, and Info
195
+ conveys trust and assistance.
196
+ hex:
197
+ $ref: "#/$defs/hexColor"
198
+ description: >-
199
+ Hexadecimal code of the semantic status color. Each semantic meaning
200
+ (Success, Warning, Danger, Info) has a distinct hex value that provides
201
+ visual clarity and accessibility when combined with appropriate text colors.
202
+ rgb:
203
+ $ref: "#/$defs/rgbValue"
204
+ description: >-
205
+ RGB representation of the semantic color. Useful for frameworks and tools
206
+ that work with RGB color space (e.g., design tools, digital mockups).
207
+ hsv:
208
+ type: string
209
+ description: >-
210
+ Hue, Saturation, Value representation for understanding the perceptual
211
+ qualities and psychological associations of the semantic color
212
+ (e.g., warm for Warning/Danger, cool for Info/Success).
213
+ text_color:
214
+ $ref: "#/$defs/textColorEnum"
215
+ description: >-
216
+ Recommended text color (White or Black) to ensure the semantic color
217
+ maintains sufficient contrast for accessibility and visual clarity.
218
+ text_color_hex:
219
+ $ref: "#/$defs/hexColor"
220
+ description: >-
221
+ Hexadecimal code of the recommended text color. Used to calculate the
222
+ contrast ratio and verify WCAG 2.2 compliance for the semantic pairing.
223
+ text_badge:
224
+ type: string
225
+ description: >-
226
+ Bootstrap utility class for semantic color styling
227
+ (e.g., "text-bg-success", "text-bg-warning").
228
+ contrast_ratio:
229
+ $ref: "#/$defs/contrastRatio"
230
+ description: >-
231
+ WCAG 2.2 contrast ratio between the semantic color and its recommended
232
+ text color. Higher ratios indicate better accessibility and visual separation.
233
+ wcag_2_2_aa:
234
+ type: boolean
235
+ description: >-
236
+ Boolean flag indicating WCAG 2.2 Level AA compliance (4.5:1 minimum).
237
+ Semantic colors must meet AA standards to ensure status information is
238
+ conveyed clearly to users with vision impairments.
239
+ wcag_2_2_aa_margin:
240
+ $ref: "#/$defs/contrastMargin"
241
+ description: >-
242
+ Distance from the AA threshold (4.5:1). Shows how safely above or below
243
+ the minimum accessibility standard this semantic color pairing sits.
244
+ Positive values provide accessibility buffer; negative values indicate non-compliance.
245
+ wcag_2_2_aaa:
246
+ type: boolean
247
+ description: >-
248
+ Boolean flag indicating WCAG 2.2 Level AAA compliance (7.0:1 minimum).
249
+ AAA compliance provides enhanced accessibility for users with low vision.
250
+ wcag_2_2_aaa_margin:
251
+ $ref: "#/$defs/contrastMargin"
252
+ description: >-
253
+ Distance from the AAA threshold (7.0:1). Shows how far above or below
254
+ the enhanced accessibility standard this semantic color pairing extends.
255
+ required:
256
+ - name
257
+ - hex
258
+ - text_color_hex
259
+ - contrast_ratio
260
+ - wcag_2_2_aa
261
+ - wcag_2_2_aaa
262
+ additionalProperties: false
263
+
264
+ neutral_colors:
265
+ type: array
266
+ description: >-
267
+ Array of neutral colors (Light, Dark) that establish visual hierarchy,
268
+ improve readability, and create depth without drawing attention.
269
+ items:
270
+ type: object
271
+ properties:
272
+ name:
273
+ type: string
274
+ enum:
275
+ - Light
276
+ - Dark
277
+ description: >-
278
+ "Light" for primary content backgrounds and visual lightness.
279
+ "Dark" for navigation, footers, and visual weight.
280
+ hex:
281
+ $ref: "#/$defs/hexColor"
282
+ description: >-
283
+ Hexadecimal code of the neutral color. Light neutral (#F5F5F5 / white-based)
284
+ establishes primary content backgrounds; Dark neutral (#222222 / black-based)
285
+ provides visual weight for navigation and footers.
286
+ rgb:
287
+ $ref: "#/$defs/rgbValue"
288
+ description: >-
289
+ RGB representation of the neutral color. Useful for cross-platform
290
+ implementations and tools that require RGB color space specifications.
291
+ hsv:
292
+ type: string
293
+ description: >-
294
+ Hue, Saturation, Value representation for analyzing the neutral color's
295
+ visual perception. Neutral colors have low saturation and variable value
296
+ (brightness) to maintain visual hierarchy without competing for attention.
297
+ text_color:
298
+ $ref: "#/$defs/textColorEnum"
299
+ description: >-
300
+ Recommended text color (White or Black) for sufficient contrast against
301
+ this neutral background. Light neutrals typically use Black; Dark neutrals use White.
302
+ text_color_hex:
303
+ $ref: "#/$defs/hexColor"
304
+ description: >-
305
+ Hexadecimal code of the recommended text color. Used to calculate contrast ratio
306
+ and verify WCAG 2.2 accessibility compliance for text on this neutral background.
307
+ text_badge:
308
+ type: string
309
+ description: >-
310
+ Bootstrap utility class for neutral color styling
311
+ (e.g., "text-bg-light", "text-bg-dark").
312
+ contrast_ratio:
313
+ $ref: "#/$defs/contrastRatio"
314
+ description: >-
315
+ WCAG 2.2 contrast ratio between the neutral background and recommended text color.
316
+ Neutral colors must maintain sufficient contrast for readability of all content.
317
+ wcag_2_2_aa:
318
+ type: boolean
319
+ description: >-
320
+ Boolean flag indicating WCAG 2.2 Level AA compliance (4.5:1 minimum).
321
+ AA compliance ensures neutral backgrounds support readable text for most users.
322
+ wcag_2_2_aa_margin:
323
+ $ref: "#/$defs/contrastMargin"
324
+ description: >-
325
+ Distance from the AA threshold (4.5:1). Shows how safely above or below the
326
+ minimum accessibility standard this neutral color pairing sits. Positive values
327
+ indicate safe margins; negative values indicate accessibility failure.
328
+ wcag_2_2_aaa:
329
+ type: boolean
330
+ description: >-
331
+ Boolean flag indicating WCAG 2.2 Level AAA compliance (7.0:1 minimum).
332
+ AAA provides enhanced accessibility for users with low vision reading on neutral backgrounds.
333
+ wcag_2_2_aaa_margin:
334
+ $ref: "#/$defs/contrastMargin"
335
+ description: >-
336
+ Distance from the AAA threshold (7.0:1). Shows how far above or below the
337
+ enhanced accessibility standard this neutral color pairing extends. Important
338
+ for high-accessibility use cases (e.g., legal documents, critical information).
339
+ required:
340
+ - name
341
+ - hex
342
+ - text_color_hex
343
+ - contrast_ratio
344
+ - wcag_2_2_aa
345
+ - wcag_2_2_aaa
346
+ additionalProperties: false
347
+
348
+ purple_shades:
349
+ type: array
350
+ description: >-
351
+ Array of 11 purple color shades (50, 100, 200, 300, 400, 500, 600, 700, 800, 900, 950)
352
+ derived from the CentOS primary brand color. Shades 50-400 work on dark backgrounds;
353
+ shades 500-950 work on light backgrounds. The shade 500 represents the main primary color.
354
+ items:
355
+ type: object
356
+ properties:
357
+ shade:
358
+ $ref: "#/$defs/shadeNumberEnum"
359
+ description: >-
360
+ Shade identifier from 50 (lightest) to 950 (darkest). Purple shades 50-400
361
+ are light and typically used with dark text; shades 500-950 are dark and
362
+ typically used with white text. Shade 500 is the base CentOS primary purple.
363
+ full_name:
364
+ type: string
365
+ pattern: "^\\$centos-purple-\\d+$"
366
+ description: >-
367
+ Full SASS variable name for use in stylesheets
368
+ (e.g., "$centos-purple-500").
369
+ hex:
370
+ $ref: "#/$defs/hexColor"
371
+ description: >-
372
+ Hexadecimal code of the purple shade. Used in CSS, HTML, and design systems.
373
+ Example: #A54C93 (shade 500, the primary purple).
374
+ rgb:
375
+ $ref: "#/$defs/rgbValue"
376
+ description: >-
377
+ RGB representation of the purple shade. Useful for frameworks and tools
378
+ requiring RGB color specifications (e.g., web design tools, digital prototypes).
379
+ hsv:
380
+ type: string
381
+ description: >-
382
+ Hue, Saturation, Value representation. HSV helps understand how the shade
383
+ progresses from light to dark, showing saturation changes that affect
384
+ perceptual intensity and vibrancy.
385
+ hue:
386
+ type: string
387
+ description: >-
388
+ Hue component in degrees for this purple shade.
389
+ saturation:
390
+ type: string
391
+ description: >-
392
+ Saturation percentage for this purple shade.
393
+ lightness:
394
+ type: string
395
+ description: >-
396
+ Lightness percentage for this purple shade.
397
+ text_badge:
398
+ type: string
399
+ description: >-
400
+ Bootstrap utility class for this purple shade
401
+ (e.g., "text-bg-centos-purple-500").
402
+ text_color:
403
+ $ref: "#/$defs/textColorEnum"
404
+ description: >-
405
+ Recommended text color (White or Black) for optimal readability on this
406
+ purple shade. Light shades (50-400) use Black; dark shades (500-950) use White.
407
+ text_color_hex:
408
+ $ref: "#/$defs/hexColor"
409
+ description: >-
410
+ Hexadecimal code of the recommended text color. Used to calculate the
411
+ contrast ratio and verify WCAG 2.2 accessibility compliance for this purple shade.
412
+ contrast_ratio:
413
+ $ref: "#/$defs/contrastRatio"
414
+ description: >-
415
+ WCAG 2.2 contrast ratio between this purple shade and its recommended text color.
416
+ Determines the accessibility level (AA at 4.5:1, AAA at 7.0:1).
417
+ wcag_2_2_aa:
418
+ type: boolean
419
+ description: >-
420
+ Boolean flag indicating WCAG 2.2 Level AA compliance (4.5:1 minimum).
421
+ True means this purple shade meets standard accessibility requirements.
422
+ wcag_2_2_aa_margin:
423
+ $ref: "#/$defs/contrastMargin"
424
+ description: >-
425
+ Distance from the AA threshold (4.5:1). Positive values show the safety margin
426
+ above the minimum; negative values indicate non-compliance. Example: +0.68:1
427
+ means this shade exceeds AA by 0.68 points.
428
+ wcag_2_2_aaa:
429
+ type: boolean
430
+ description: >-
431
+ Boolean flag indicating WCAG 2.2 Level AAA compliance (7.0:1 minimum).
432
+ True means this purple shade meets enhanced accessibility for users with low vision.
433
+ wcag_2_2_aaa_margin:
434
+ $ref: "#/$defs/contrastMargin"
435
+ description: >-
436
+ Distance from the AAA threshold (7.0:1). Positive values exceed the enhanced
437
+ standard; negative values indicate it meets AA but not AAA.
438
+ required:
439
+ - shade
440
+ - hex
441
+ - text_color_hex
442
+ - contrast_ratio
443
+ - wcag_2_2_aa
444
+ - wcag_2_2_aaa
445
+ additionalProperties: false
446
+
447
+ orange_shades:
448
+ type: array
449
+ description: >-
450
+ Array of 11 orange color shades (50, 100, 200, 300, 400, 500, 600, 700, 800, 900, 950)
451
+ derived from the CentOS secondary brand color. Shades provide warmth and approachability
452
+ across the design system. Shade 500 is the base secondary color.
453
+ items:
454
+ type: object
455
+ properties:
456
+ shade:
457
+ $ref: "#/$defs/shadeNumberEnum"
458
+ description: >-
459
+ Shade identifier from 50 (lightest) to 950 (darkest). Orange shades 50-400
460
+ are light and typically used with dark text; shades 500-950 are dark and
461
+ typically used with white text. Shade 500 is the base CentOS secondary orange.
462
+ full_name:
463
+ type: string
464
+ pattern: "^\\$centos-orange-\\d+$"
465
+ description: >-
466
+ Full SASS variable name for use in stylesheets
467
+ (e.g., "$centos-orange-500").
468
+ hex:
469
+ $ref: "#/$defs/hexColor"
470
+ description: >-
471
+ Hexadecimal code of the orange shade. Used in CSS, HTML, and design systems.
472
+ Example: #B27800 (shade 500, the secondary orange).
473
+ rgb:
474
+ $ref: "#/$defs/rgbValue"
475
+ description: >-
476
+ RGB representation of the orange shade. Useful for frameworks and tools
477
+ requiring RGB color specifications in design tools and digital mockups.
478
+ hsv:
479
+ type: string
480
+ description: >-
481
+ Hue, Saturation, Value representation. HSV helps understand the warm,
482
+ approachable nature of orange across its shade progression, showing how
483
+ saturation and brightness change.
484
+ hue:
485
+ type: string
486
+ description: >-
487
+ Hue component in degrees for this orange shade.
488
+ saturation:
489
+ type: string
490
+ description: >-
491
+ Saturation percentage for this orange shade.
492
+ lightness:
493
+ type: string
494
+ description: >-
495
+ Lightness percentage for this orange shade.
496
+ text_badge:
497
+ type: string
498
+ description: >-
499
+ Bootstrap utility class for this orange shade
500
+ (e.g., "text-bg-centos-orange-500").
501
+ text_color:
502
+ $ref: "#/$defs/textColorEnum"
503
+ description: >-
504
+ Recommended text color (White or Black) for optimal readability on this
505
+ orange shade. Light shades (50-400) use Black; dark shades (500-950) use White.
506
+ text_color_hex:
507
+ $ref: "#/$defs/hexColor"
508
+ description: >-
509
+ Hexadecimal code of the recommended text color. Used to calculate the
510
+ contrast ratio and verify WCAG 2.2 accessibility compliance for this orange shade.
511
+ contrast_ratio:
512
+ $ref: "#/$defs/contrastRatio"
513
+ description: >-
514
+ WCAG 2.2 contrast ratio between this orange shade and its recommended text color.
515
+ Determines accessibility level (AA at 4.5:1, AAA at 7.0:1).
516
+ wcag_2_2_aa:
517
+ type: boolean
518
+ description: >-
519
+ Boolean flag indicating WCAG 2.2 Level AA compliance (4.5:1 minimum).
520
+ True means this orange shade meets standard accessibility requirements.
521
+ wcag_2_2_aa_margin:
522
+ $ref: "#/$defs/contrastMargin"
523
+ description: >-
524
+ Distance from the AA threshold (4.5:1). Positive values show the safety margin
525
+ above the minimum; negative values indicate non-compliance.
526
+ wcag_2_2_aaa:
527
+ type: boolean
528
+ description: >-
529
+ Boolean flag indicating WCAG 2.2 Level AAA compliance (7.0:1 minimum).
530
+ True means this orange shade meets enhanced accessibility for users with low vision.
531
+ wcag_2_2_aaa_margin:
532
+ $ref: "#/$defs/contrastMargin"
533
+ description: >-
534
+ Distance from the AAA threshold (7.0:1). Positive values exceed the enhanced
535
+ standard; negative values indicate it meets AA but not AAA.
536
+ required:
537
+ - shade
538
+ - hex
539
+ - text_color_hex
540
+ - contrast_ratio
541
+ - wcag_2_2_aa
542
+ - wcag_2_2_aaa
543
+ additionalProperties: false
544
+
545
+ blue_shades:
546
+ type: array
547
+ description: >-
548
+ Array of 11 blue color shades (50, 100, 200, 300, 400, 500, 600, 700, 800, 900, 950)
549
+ for extended design flexibility. Blue conveys trust, information, and assistance.
550
+ Useful for informational alerts, links, and complementary accents.
551
+ items:
552
+ type: object
553
+ properties:
554
+ shade:
555
+ $ref: "#/$defs/shadeNumberEnum"
556
+ description: >-
557
+ Shade identifier from 50 (lightest) to 950 (darkest). Blue shades 50-400
558
+ are light and typically used with dark text; shades 500-950 are dark and
559
+ typically used with white text. Blue conveys trust and information, useful
560
+ for links, info alerts, and complementary accents.
561
+ full_name:
562
+ type: string
563
+ pattern: "^\\$centos-blue-\\d+$"
564
+ description: >-
565
+ Full SASS variable name for use in stylesheets
566
+ (e.g., "$centos-blue-500").
567
+ hex:
568
+ $ref: "#/$defs/hexColor"
569
+ description: >-
570
+ Hexadecimal code of the blue shade. Used in CSS, HTML, and design systems.
571
+ Example: #2C2A80 (shade 500, the base blue for links and information).
572
+ rgb:
573
+ $ref: "#/$defs/rgbValue"
574
+ description: >-
575
+ RGB representation of the blue shade. Useful for frameworks and tools
576
+ requiring RGB color specifications, particularly for digital interfaces
577
+ and informational components.
578
+ hsv:
579
+ type: string
580
+ description: >-
581
+ Hue, Saturation, Value representation. HSV helps understand blue's cool,
582
+ trustworthy nature across its shade progression, showing saturation and
583
+ brightness changes that affect perception of trust and information density.
584
+ hue:
585
+ type: string
586
+ description: >-
587
+ Hue component in degrees for this blue shade.
588
+ saturation:
589
+ type: string
590
+ description: >-
591
+ Saturation percentage for this blue shade.
592
+ lightness:
593
+ type: string
594
+ description: >-
595
+ Lightness percentage for this blue shade.
596
+ text_badge:
597
+ type: string
598
+ description: >-
599
+ Bootstrap utility class for this blue shade
600
+ (e.g., "text-bg-centos-blue-500").
601
+ text_color:
602
+ $ref: "#/$defs/textColorEnum"
603
+ description: >-
604
+ Recommended text color (White or Black) for optimal readability on this
605
+ blue shade. Light shades (50-400) use Black; dark shades (500-950) use White.
606
+ text_color_hex:
607
+ $ref: "#/$defs/hexColor"
608
+ description: >-
609
+ Hexadecimal code of the recommended text color. Used to calculate the
610
+ contrast ratio and verify WCAG 2.2 accessibility compliance for this blue shade.
611
+ contrast_ratio:
612
+ $ref: "#/$defs/contrastRatio"
613
+ description: >-
614
+ WCAG 2.2 contrast ratio between this blue shade and its recommended text color.
615
+ Important for ensuring links and information alerts are accessible.
616
+ wcag_2_2_aa:
617
+ type: boolean
618
+ description: >-
619
+ Boolean flag indicating WCAG 2.2 Level AA compliance (4.5:1 minimum).
620
+ True means this blue shade meets standard accessibility requirements.
621
+ wcag_2_2_aa_margin:
622
+ $ref: "#/$defs/contrastMargin"
623
+ description: >-
624
+ Distance from the AA threshold (4.5:1). Positive values show the safety margin
625
+ above the minimum; negative values indicate non-compliance.
626
+ wcag_2_2_aaa:
627
+ type: boolean
628
+ description: >-
629
+ Boolean flag indicating WCAG 2.2 Level AAA compliance (7.0:1 minimum).
630
+ True means this blue shade meets enhanced accessibility for users with low vision.
631
+ wcag_2_2_aaa_margin:
632
+ $ref: "#/$defs/contrastMargin"
633
+ description: >-
634
+ Distance from the AAA threshold (7.0:1). Positive values exceed the enhanced
635
+ standard; negative values indicate it meets AA but not AAA.
636
+ required:
637
+ - shade
638
+ - hex
639
+ - text_color_hex
640
+ - contrast_ratio
641
+ - wcag_2_2_aa
642
+ - wcag_2_2_aaa
643
+ additionalProperties: false
644
+
645
+ green_shades:
646
+ type: array
647
+ description: >-
648
+ Array of 11 green color shades (50, 100, 200, 300, 400, 500, 600, 700, 800, 900, 950)
649
+ for extended design flexibility. Green communicates success, growth, and positive outcomes.
650
+ Useful for success states, positive indicators, and completion messaging.
651
+ items:
652
+ type: object
653
+ properties:
654
+ shade:
655
+ $ref: "#/$defs/shadeNumberEnum"
656
+ description: >-
657
+ Shade identifier from 50 (lightest) to 950 (darkest). Green shades 50-400
658
+ are light and typically used with dark text; shades 500-950 are dark and
659
+ typically used with white text. Green communicates success, growth, and
660
+ positive outcomes across the design system.
661
+ full_name:
662
+ type: string
663
+ pattern: "^\\$centos-green-\\d+$"
664
+ description: >-
665
+ Full SASS variable name for use in stylesheets
666
+ (e.g., "$centos-green-500").
667
+ hex:
668
+ $ref: "#/$defs/hexColor"
669
+ description: >-
670
+ Hexadecimal code of the green shade. Used in CSS, HTML, and design systems.
671
+ Example: #00A651 (shade 500, the base green for success states).
672
+ rgb:
673
+ $ref: "#/$defs/rgbValue"
674
+ description: >-
675
+ RGB representation of the green shade. Useful for frameworks and tools
676
+ requiring RGB color specifications, especially for success messages and
677
+ positive feedback indicators.
678
+ hsv:
679
+ type: string
680
+ description: >-
681
+ Hue, Saturation, Value representation. HSV helps understand green's positive,
682
+ growth-oriented nature across its shade progression, showing saturation and
683
+ brightness changes that affect perception of success and completion.
684
+ hue:
685
+ type: string
686
+ description: >-
687
+ Hue component in degrees for this green shade.
688
+ saturation:
689
+ type: string
690
+ description: >-
691
+ Saturation percentage for this green shade.
692
+ lightness:
693
+ type: string
694
+ description: >-
695
+ Lightness percentage for this green shade.
696
+ text_badge:
697
+ type: string
698
+ description: >-
699
+ Bootstrap utility class for this green shade
700
+ (e.g., "text-bg-centos-green-500").
701
+ text_color:
702
+ $ref: "#/$defs/textColorEnum"
703
+ description: >-
704
+ Recommended text color (White or Black) for optimal readability on this
705
+ green shade. Light shades (50-400) use Black; dark shades (500-950) use White.
706
+ text_color_hex:
707
+ $ref: "#/$defs/hexColor"
708
+ description: >-
709
+ Hexadecimal code of the recommended text color. Used to calculate the
710
+ contrast ratio and verify WCAG 2.2 accessibility compliance for this green shade.
711
+ contrast_ratio:
712
+ $ref: "#/$defs/contrastRatio"
713
+ description: >-
714
+ WCAG 2.2 contrast ratio between this green shade and its recommended text color.
715
+ Important for ensuring success messages and completion indicators are accessible.
716
+ wcag_2_2_aa:
717
+ type: boolean
718
+ description: >-
719
+ Boolean flag indicating WCAG 2.2 Level AA compliance (4.5:1 minimum).
720
+ True means this green shade meets standard accessibility requirements.
721
+ wcag_2_2_aa_margin:
722
+ $ref: "#/$defs/contrastMargin"
723
+ description: >-
724
+ Distance from the AA threshold (4.5:1). Positive values show the safety margin
725
+ above the minimum; negative values indicate non-compliance.
726
+ wcag_2_2_aaa:
727
+ type: boolean
728
+ description: >-
729
+ Boolean flag indicating WCAG 2.2 Level AAA compliance (7.0:1 minimum).
730
+ True means this green shade meets enhanced accessibility for users with low vision.
731
+ wcag_2_2_aaa_margin:
732
+ $ref: "#/$defs/contrastMargin"
733
+ description: >-
734
+ Distance from the AAA threshold (7.0:1). Positive values exceed the enhanced
735
+ standard; negative values indicate it meets AA but not AAA.
736
+ required:
737
+ - shade
738
+ - hex
739
+ - text_color_hex
740
+ - contrast_ratio
741
+ - wcag_2_2_aa
742
+ - wcag_2_2_aaa
743
+ additionalProperties: false
744
+
745
+ color_pairings:
746
+ type: array
747
+ description: >-
748
+ Array of recommended color pairing combinations for background/accent layering.
749
+ Defines primary and secondary accent shades that work well together on specific
750
+ background shades, useful for creating visual hierarchy and multi-color compositions.
751
+ items:
752
+ type: object
753
+ properties:
754
+ background:
755
+ type: string
756
+ description: >-
757
+ The background shade being used as a base
758
+ (e.g., "Purple 50", "Orange 500").
759
+ primary_accent:
760
+ type: string
761
+ description: >-
762
+ The primary accent shade recommended for this background
763
+ (e.g., "Purple 600").
764
+ secondary_accent:
765
+ type: string
766
+ description: >-
767
+ The secondary accent shade for layering effects
768
+ (e.g., "Orange 400").
769
+ compatibility_icon:
770
+ type: string
771
+ description: >-
772
+ Font Awesome icon class indicating compatibility level
773
+ (e.g., "fa-solid fa-check" for excellent).
774
+ compatibility_rating:
775
+ type: string
776
+ enum:
777
+ - Excellent
778
+ - Good
779
+ - Fair
780
+ - Use with caution
781
+ description: >-
782
+ Qualitative rating of how well these colors work together.
783
+ Excellent pairings maintain high contrast and visual hierarchy.
784
+ notes:
785
+ type: string
786
+ description: >-
787
+ Additional guidance on using this pairing, such as recommended use cases
788
+ or visual effects achieved.
789
+ required:
790
+ - background
791
+ - primary_accent
792
+ - secondary_accent
793
+ - compatibility_rating
794
+ additionalProperties: false
795
+
796
+ shade_selections:
797
+ type: array
798
+ description: >-
799
+ Array defining recommended shade selections for visual hierarchy within each color
800
+ family. Provides guidance on which shades to use for light, medium, and dark
801
+ components to maintain consistent design language.
802
+ items:
803
+ type: object
804
+ properties:
805
+ color_family:
806
+ type: string
807
+ enum:
808
+ - Purple
809
+ - Orange
810
+ - Blue
811
+ - Green
812
+ description: The color family this selection applies to.
813
+ light_50_100:
814
+ type: string
815
+ description: >-
816
+ Recommended usage for shades 50-100 (very light variants).
817
+ Typically used for subtle backgrounds, disabled states, or secondary information.
818
+ light_300_400:
819
+ type: string
820
+ description: >-
821
+ Recommended usage for shades 300-400 (light-medium variants).
822
+ Useful for lighter backgrounds or secondary content areas.
823
+ main_500:
824
+ type: string
825
+ description: >-
826
+ Recommended usage for shade 500 (the main/base color).
827
+ Primary buttons, key navigation, brand reinforcement.
828
+ dark_600_700:
829
+ type: string
830
+ description: >-
831
+ Recommended usage for shades 600-700 (dark variants).
832
+ Hover states, emphasis, higher visual weight.
833
+ required:
834
+ - color_family
835
+ - light_50_100
836
+ - light_300_400
837
+ - main_500
838
+ - dark_600_700
839
+ additionalProperties: false
840
+
841
+ palette:
842
+ type: array
843
+ description: >-
844
+ Array of high-level color palette metadata for each primary color family
845
+ (Purple, Orange, Blue, Green). Each entry includes full color properties, contrast ratios
846
+ for white and black text, plus available shade numbers. Useful for template rendering
847
+ and color system documentation.
848
+ items:
849
+ type: object
850
+ properties:
851
+ name:
852
+ type: string
853
+ description: >-
854
+ Descriptive name of the color family palette
855
+ (e.g., "centos-purple", "centos-orange").
856
+ hex:
857
+ $ref: "#/$defs/hexColor"
858
+ description: >-
859
+ Hexadecimal code of the base/shade 500 color for this palette family.
860
+ Represents the main color when no specific shade is specified.
861
+ rgb:
862
+ $ref: "#/$defs/rgbValue"
863
+ description: >-
864
+ RGB representation of the base color for this palette family.
865
+ hsv:
866
+ type: string
867
+ description: >-
868
+ HSV representation of the base color (Hue, Saturation, Value).
869
+ hue:
870
+ type: string
871
+ description: >-
872
+ Hue component in degrees for this palette family's base color.
873
+ saturation:
874
+ type: string
875
+ description: >-
876
+ Saturation percentage for this palette family's base color.
877
+ lightness:
878
+ type: string
879
+ description: >-
880
+ Lightness percentage for this palette family's base color.
881
+ text_color:
882
+ $ref: "#/$defs/textColorEnum"
883
+ description: >-
884
+ Recommended text color (White or Black) for this palette's base color.
885
+ text_color_hex:
886
+ $ref: "#/$defs/hexColor"
887
+ description: >-
888
+ Hexadecimal code of the recommended text color.
889
+ text_badge:
890
+ type: string
891
+ description: >-
892
+ Bootstrap utility class for this palette family.
893
+ full_name:
894
+ type: string
895
+ description: >-
896
+ Full SASS variable name for this palette's base color.
897
+ contrast_ratio:
898
+ $ref: "#/$defs/contrastRatio"
899
+ description: >-
900
+ WCAG 2.2 contrast ratio for this palette's base color.
901
+ contrast_white:
902
+ $ref: "#/$defs/contrastRatio"
903
+ description: >-
904
+ WCAG 2.2 contrast ratio between this color family's base shade and white text (#FFFFFF).
905
+ Used to determine if this shade supports white text rendering.
906
+ contrast_black:
907
+ $ref: "#/$defs/contrastRatio"
908
+ description: >-
909
+ WCAG 2.2 contrast ratio between this color family's base shade and black text (#000000).
910
+ Used to determine if this shade supports black text rendering.
911
+ wcag_2_2_aa:
912
+ type: boolean
913
+ description: >-
914
+ Boolean flag indicating WCAG 2.2 Level AA compliance.
915
+ wcag_2_2_aa_margin:
916
+ $ref: "#/$defs/contrastMargin"
917
+ description: >-
918
+ Distance from AA threshold (4.5:1).
919
+ wcag_2_2_aaa:
920
+ type: boolean
921
+ description: >-
922
+ Boolean flag indicating WCAG 2.2 Level AAA compliance.
923
+ wcag_2_2_aaa_margin:
924
+ $ref: "#/$defs/contrastMargin"
925
+ description: >-
926
+ Distance from AAA threshold (7.0:1).
927
+ shades:
928
+ type: array
929
+ items:
930
+ type: integer
931
+ description: >-
932
+ Array of available shade numbers for this color family
933
+ (e.g., [50, 100, 200, 300, 400, 500, 600, 700, 800, 900, 950]).
934
+ required:
935
+ - name
936
+ - hex
937
+ - shades
938
+ additionalProperties: false
939
+
940
+ base_colors:
941
+ type: array
942
+ description: >-
943
+ Array of base color metadata for the four primary color families (Purple, Orange, Blue, Green).
944
+ Each entry provides contrast information for both light and dark backgrounds, useful for
945
+ determining which shades to use in different contexts.
946
+ items:
947
+ type: object
948
+ properties:
949
+ name:
950
+ type: string
951
+ enum:
952
+ - Purple
953
+ - Orange
954
+ - Blue
955
+ - Green
956
+ description: The color family name.
957
+ hex:
958
+ $ref: "#/$defs/hexColor"
959
+ description: >-
960
+ Hexadecimal code of the base color (typically shade 500).
961
+ color_name:
962
+ type: string
963
+ description: >-
964
+ Human-readable color name for documentation.
965
+ shade_name:
966
+ type: string
967
+ description: >-
968
+ Full shade identifier (e.g., "centos-purple-500").
969
+ light_bg_contrast:
970
+ $ref: "#/$defs/contrastRatio"
971
+ description: >-
972
+ WCAG 2.2 contrast ratio when this color is used on a light background.
973
+ light_bg_status:
974
+ type: boolean
975
+ description: >-
976
+ Boolean flag indicating if this color passes accessibility standards
977
+ (AA 4.5:1) on light backgrounds.
978
+ dark_bg_contrast:
979
+ $ref: "#/$defs/contrastRatio"
980
+ description: >-
981
+ WCAG 2.2 contrast ratio when this color is used on a dark background.
982
+ dark_bg_status:
983
+ type: boolean
984
+ description: >-
985
+ Boolean flag indicating if this color passes accessibility standards
986
+ (AA 4.5:1) on dark backgrounds.
987
+ required:
988
+ - name
989
+ - hex
990
+ - color_name
991
+ - shade_name
992
+ - light_bg_contrast
993
+ - light_bg_status
994
+ - dark_bg_contrast
995
+ - dark_bg_status
996
+ additionalProperties: false
997
+
998
+ all_shades:
999
+ type: array
1000
+ description: >-
1001
+ Array of references to all shade collections, mapping each color family
1002
+ to its corresponding shades collection property name. Useful for iterating
1003
+ over all shade groups programmatically.
1004
+ items:
1005
+ type: object
1006
+ properties:
1007
+ collection:
1008
+ type: string
1009
+ enum:
1010
+ - purple_shades
1011
+ - orange_shades
1012
+ - blue_shades
1013
+ - green_shades
1014
+ description: >-
1015
+ Property name of the shade collection in the root object
1016
+ (e.g., "purple_shades").
1017
+ required:
1018
+ - collection
1019
+ additionalProperties: false
1020
+
1021
+ required:
1022
+ - branding_colors
1023
+ - semantic_colors
1024
+ - neutral_colors
1025
+ - purple_shades
1026
+ - orange_shades
1027
+ - blue_shades
1028
+ - green_shades
1029
+ - palette
1030
+ - color_pairings
1031
+ - shade_selections
1032
+ - base_colors
1033
+ - all_shades
1034
+ additionalProperties: false
1035
+
1036
+ additionalProperties: false