jekyll-theme-centos 0.0.0 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE.txt +21 -0
- data/README.md +66 -0
- data/_includes/centos-content/1col.html +11 -0
- data/_includes/centos-content/2col.html +15 -0
- data/_includes/centos-content/admonition/caution.html +4 -0
- data/_includes/centos-content/admonition/idea.html +4 -0
- data/_includes/centos-content/admonition/note.html +4 -0
- data/_includes/centos-content/admonition/warning.html +4 -0
- data/_includes/centos-content/around.html +6 -0
- data/_includes/centos-content/breadcrumbs.html +11 -0
- data/_includes/centos-content/download/stream-8-doc.html +5 -0
- data/_includes/centos-content/download/stream-8-eol.html +5 -0
- data/_includes/centos-content/download/stream-8.html +5 -0
- data/_includes/centos-content/download/stream.html +16 -0
- data/_includes/centos-content/download/table-body-doc.html +6 -0
- data/_includes/centos-content/download/table-body-eol.html +4 -0
- data/_includes/centos-content/download/table-body.html +7 -0
- data/_includes/{download/cards-footer.html → centos-content/download/table-footer.html} +0 -1
- data/_includes/centos-content/download/table-header-doc.html +8 -0
- data/_includes/centos-content/download/table-header-eol.html +8 -0
- data/_includes/centos-content/download/table-header.html +10 -0
- data/_includes/centos-content/figure.html +4 -0
- data/_includes/centos-content/news.html +15 -0
- data/_includes/centos-content/sponsors.html +19 -0
- data/_includes/centos-content/toc.html +103 -0
- data/_includes/centos-content/video.html +3 -0
- data/_includes/centos-footer.html +42 -0
- data/_includes/centos-head.html +7 -0
- data/_includes/centos-header/home.html +15 -0
- data/_includes/centos-header/page.html +12 -0
- data/_includes/centos-header.html +7 -0
- data/_includes/centos-nav.html +29 -0
- data/_includes/centos-styleguide.md +243 -0
- data/_layouts/centos-content/1col.html +9 -0
- data/_layouts/centos-content/2col.html +9 -0
- data/_layouts/centos-content/download-mirror.html +30 -0
- data/_layouts/centos-content/download.html +18 -0
- data/_layouts/centos-content/sponsors.html +21 -0
- data/_layouts/centos-home.html +39 -0
- data/_layouts/default.html +18 -0
- data/_layouts/{download/cards.html → page.html} +0 -2
- data/_layouts/post.html +5 -0
- data/_sass/bootstrap/_alert.scss +16 -32
- data/_sass/bootstrap/_badge.scss +31 -15
- data/_sass/bootstrap/_breadcrumb.scss +27 -23
- data/_sass/bootstrap/_button-group.scss +48 -32
- data/_sass/bootstrap/_buttons.scss +71 -145
- data/_sass/bootstrap/_card.scss +123 -75
- data/_sass/bootstrap/_carousel.scss +39 -68
- data/_sass/bootstrap/_close.scss +27 -53
- data/_sass/bootstrap/_code.scss +48 -0
- data/_sass/bootstrap/_custom-forms.scss +524 -0
- data/_sass/bootstrap/_dropdown.scss +71 -129
- data/_sass/bootstrap/_forms.scss +347 -9
- data/_sass/bootstrap/_functions.scss +23 -181
- data/_sass/bootstrap/_grid.scss +52 -18
- data/_sass/bootstrap/_images.scss +1 -1
- data/_sass/bootstrap/_input-group.scss +192 -0
- data/_sass/bootstrap/_jumbotron.scss +17 -0
- data/_sass/bootstrap/_list-group.scss +48 -93
- data/_sass/bootstrap/_media.scss +8 -0
- data/_sass/bootstrap/_mixins.scss +15 -10
- data/_sass/bootstrap/_modal.scss +112 -112
- data/_sass/bootstrap/_nav.scss +29 -103
- data/_sass/bootstrap/_navbar.scss +171 -136
- data/_sass/bootstrap/_pagination.scss +37 -72
- data/_sass/bootstrap/_popover.scss +73 -99
- data/_sass/bootstrap/_print.scss +141 -0
- data/_sass/bootstrap/_progress.scss +15 -36
- data/_sass/bootstrap/_reboot.scss +200 -333
- data/_sass/bootstrap/_root.scss +10 -177
- data/_sass/bootstrap/_spinners.scss +22 -52
- data/_sass/bootstrap/_tables.scss +115 -101
- data/_sass/bootstrap/_toasts.scss +27 -54
- data/_sass/bootstrap/_tooltip.scss +63 -67
- data/_sass/bootstrap/_transitions.scss +1 -8
- data/_sass/bootstrap/_type.scss +59 -40
- data/_sass/bootstrap/_utilities.scss +18 -806
- data/_sass/bootstrap/_variables.scss +611 -1222
- data/_sass/bootstrap/bootstrap-grid.scss +20 -53
- data/_sass/bootstrap/bootstrap-reboot.scss +7 -5
- data/_sass/bootstrap/bootstrap.scss +13 -21
- data/_sass/bootstrap/mixins/_alert.scss +6 -11
- data/_sass/bootstrap/mixins/_background-variant.scss +23 -0
- data/_sass/bootstrap/mixins/_badge.scss +17 -0
- data/_sass/bootstrap/mixins/_border-radius.scss +8 -10
- data/_sass/bootstrap/mixins/_box-shadow.scss +9 -13
- data/_sass/bootstrap/mixins/_breakpoints.scss +16 -20
- data/_sass/bootstrap/mixins/_buttons.scss +100 -60
- data/_sass/bootstrap/mixins/_caret.scss +27 -34
- data/_sass/bootstrap/mixins/_clearfix.scss +0 -2
- data/_sass/bootstrap/mixins/_deprecate.scss +0 -0
- data/_sass/bootstrap/mixins/_float.scss +14 -0
- data/_sass/bootstrap/mixins/_forms.scss +78 -63
- data/_sass/bootstrap/mixins/_gradients.scss +11 -13
- data/_sass/bootstrap/mixins/_grid-framework.scss +80 -0
- data/_sass/bootstrap/mixins/_grid.scss +37 -119
- data/_sass/bootstrap/mixins/_hover.scss +37 -0
- data/_sass/bootstrap/mixins/_image.scss +21 -1
- data/_sass/bootstrap/mixins/_list-group.scss +2 -7
- data/_sass/bootstrap/mixins/_lists.scss +1 -1
- data/_sass/bootstrap/mixins/_nav-divider.scss +11 -0
- data/_sass/bootstrap/mixins/_pagination.scss +19 -7
- data/_sass/bootstrap/mixins/_reset-text.scss +3 -3
- data/_sass/bootstrap/mixins/_resize.scss +0 -0
- data/_sass/bootstrap/mixins/_screen-reader.scss +34 -0
- data/_sass/bootstrap/mixins/_size.scss +7 -0
- data/_sass/bootstrap/mixins/_table-row.scss +39 -0
- data/_sass/bootstrap/mixins/_text-emphasis.scss +17 -0
- data/_sass/bootstrap/mixins/_text-hide.scss +11 -0
- data/_sass/bootstrap/mixins/_text-truncate.scss +0 -0
- data/_sass/bootstrap/mixins/_transition.scss +1 -1
- data/_sass/bootstrap/mixins/_visibility.scss +8 -0
- data/_sass/bootstrap/utilities/_align.scss +8 -0
- data/_sass/bootstrap/utilities/_background.scss +19 -0
- data/_sass/bootstrap/utilities/_borders.scss +75 -0
- data/_sass/bootstrap/{helpers → utilities}/_clearfix.scss +0 -0
- data/_sass/bootstrap/utilities/_display.scss +26 -0
- data/_sass/bootstrap/utilities/_embed.scss +39 -0
- data/_sass/bootstrap/utilities/_flex.scss +51 -0
- data/_sass/bootstrap/utilities/_float.scss +11 -0
- data/_sass/bootstrap/utilities/_interactions.scss +5 -0
- data/_sass/bootstrap/utilities/_overflow.scss +5 -0
- data/_sass/bootstrap/utilities/_position.scss +32 -0
- data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
- data/_sass/bootstrap/utilities/_shadows.scss +6 -0
- data/_sass/bootstrap/utilities/_sizing.scss +20 -0
- data/_sass/bootstrap/utilities/_spacing.scss +73 -0
- data/_sass/bootstrap/utilities/_stretched-link.scss +19 -0
- data/_sass/bootstrap/utilities/_text.scss +72 -0
- data/_sass/bootstrap/utilities/_visibility.scss +13 -0
- data/_sass/bootstrap/vendor/_rfs.scss +132 -276
- data/_sass/centos/_content.scss +101 -0
- data/_sass/centos/_datatable.scss +271 -0
- data/_sass/centos/_fonts.scss +1 -0
- data/_sass/centos/_footer.scss +49 -0
- data/_sass/centos/_header.scss +25 -0
- data/_sass/centos/_highlighter.scss +360 -0
- data/_sass/centos/_mixins.scss +4 -0
- data/_sass/centos/_nav.scss +10 -0
- data/_sass/centos/_rssfeeds.scss +17 -0
- data/_sass/centos/_variables.scss +111 -0
- data/_sass/centos/centos.scss +23 -0
- data/_sass/centos/content/_1col.scss +32 -0
- data/_sass/centos/content/_2col.scss +44 -0
- data/_sass/centos/content/_download.scss +17 -0
- data/_sass/centos/content/_sponsors.scss +9 -0
- data/_sass/centos/fonts/_montserrat.scss +256 -0
- data/_sass/centos/header/_home.scss +4 -0
- data/_sass/centos/header/_page.scss +4 -0
- data/_sass/centos/mixins/_content-card.scss +13 -0
- data/_sass/centos/mixins/_content-heading.scss +28 -0
- data/_sass/centos/mixins/_content-toc.scss +18 -0
- data/_sass/centos/mixins/_footer-link.scss +10 -0
- data/_sass/fontawesome/_animated.scss +20 -0
- data/_sass/fontawesome/_bordered-pulled.scss +20 -0
- data/_sass/fontawesome/_core.scss +21 -0
- data/_sass/fontawesome/_fixed-width.scss +6 -0
- data/_sass/fontawesome/_icons.scss +1462 -0
- data/_sass/fontawesome/_larger.scss +23 -0
- data/_sass/fontawesome/_list.scss +18 -0
- data/_sass/fontawesome/_mixins.scss +56 -0
- data/_sass/fontawesome/_rotated-flipped.scss +24 -0
- data/_sass/fontawesome/_screen-reader.scss +5 -0
- data/_sass/fontawesome/_shims.scss +2066 -0
- data/_sass/fontawesome/_stacked.scss +31 -0
- data/_sass/fontawesome/_variables.scss +1479 -0
- data/_sass/fontawesome/brands.scss +23 -0
- data/_sass/fontawesome/fontawesome.scss +16 -0
- data/_sass/fontawesome/regular.scss +23 -0
- data/_sass/fontawesome/solid.scss +24 -0
- data/_sass/fontawesome/v4-shims.scss +6 -0
- data/assets/css/centos.bootstrap.min.scss +4 -0
- data/assets/fonts/Montserrat/Montserrat-Black.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Black.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-BlackItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-BlackItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-Bold.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Bold.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-BoldItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-BoldItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraBold.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraBold.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraBoldItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraBoldItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraLight.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraLight.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraLightItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraLightItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-Italic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Italic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-Light.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Light.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-LightItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-LightItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-Medium.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Medium.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-MediumItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-MediumItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-Regular.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Regular.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-SemiBold.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-SemiBold.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-SemiBoldItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-SemiBoldItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-Thin.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Thin.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-ThinItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-ThinItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat.css +327 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Black.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Black.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-BlackItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-BlackItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Bold.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Bold.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-BoldItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-BoldItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraBold.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraBold.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraBoldItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraBoldItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraLight.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraLight.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraLightItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraLightItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Italic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Italic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Light.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Light.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-LightItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-LightItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Medium.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Medium.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-MediumItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-MediumItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Regular.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Regular.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-SemiBold.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-SemiBold.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-SemiBoldItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-SemiBoldItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Thin.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Thin.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ThinItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ThinItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/README.MD +35 -0
- data/assets/fonts/fa-brands-400.eot +0 -0
- data/assets/fonts/fa-brands-400.svg +3717 -0
- data/assets/fonts/fa-brands-400.ttf +0 -0
- data/assets/fonts/fa-brands-400.woff +0 -0
- data/assets/fonts/fa-brands-400.woff2 +0 -0
- data/assets/fonts/fa-regular-400.eot +0 -0
- data/assets/fonts/fa-regular-400.svg +801 -0
- data/assets/fonts/fa-regular-400.ttf +0 -0
- data/assets/fonts/fa-regular-400.woff +0 -0
- data/assets/fonts/fa-regular-400.woff2 +0 -0
- data/assets/fonts/fa-solid-900.eot +0 -0
- data/assets/fonts/fa-solid-900.svg +5028 -0
- data/assets/fonts/fa-solid-900.ttf +0 -0
- data/assets/fonts/fa-solid-900.woff +0 -0
- data/assets/fonts/fa-solid-900.woff2 +0 -0
- data/assets/img/centos-logo-white.png +0 -0
- data/assets/img/centos-motif.png +0 -0
- data/assets/img/favicon.png +0 -0
- data/assets/js/bootstrap.min.js +4 -4
- data/assets/js/bootstrap.min.js.map +1 -1
- data/assets/js/dataTables.bootstrap4.min.js +14 -0
- data/assets/js/jquery.dataTables.min.js +184 -0
- data/assets/js/jquery.min.js +2 -0
- data/assets/js/jquery.rss.js +11 -0
- data/assets/js/moment.min.js +7 -0
- metadata +238 -492
- data/_config.yml +0 -196
- data/_data/base/announcement_schema.yml +0 -49
- data/_data/base/artwork_schema.yml +0 -46
- data/_data/base/backtotop_schema.yml +0 -59
- data/_data/base/bits.yml +0 -96
- data/_data/base/bits_schema.yml +0 -185
- data/_data/base/breadcrumb_schema.yml +0 -27
- data/_data/base/breakingnews_schema.yml +0 -67
- data/_data/base/card_schema.yml +0 -146
- data/_data/base/color.yml +0 -1042
- data/_data/base/color_schema.yml +0 -1036
- data/_data/base/configuration_variables_schema.yml +0 -42
- data/_data/base/content.yml +0 -2
- data/_data/base/content_schema.yml +0 -26
- data/_data/base/copyright.yml +0 -12
- data/_data/base/copyright_schema.yml +0 -74
- data/_data/base/copyvalue_schema.yml +0 -49
- data/_data/base/datatable_schema.yml +0 -57
- data/_data/base/event_schema.yml +0 -130
- data/_data/base/fontawesome_schema.yml +0 -62
- data/_data/base/footer.yml +0 -9
- data/_data/base/footer_schema.yml +0 -55
- data/_data/base/head_schema.yml +0 -19
- data/_data/base/heading_anchor.yml +0 -2
- data/_data/base/heading_anchor_schema.yml +0 -37
- data/_data/base/highlight_schema.yml +0 -98
- data/_data/base/image_schema.yml +0 -34
- data/_data/base/languages.yml +0 -186
- data/_data/base/link_schema.yml +0 -187
- data/_data/base/locales_schema.yml +0 -158
- data/_data/base/navbar.yml +0 -20
- data/_data/base/navbar_schema.yml +0 -129
- data/_data/base/navindex_schema.yml +0 -67
- data/_data/base/ogp.yml +0 -24
- data/_data/base/ogp_schema.yml +0 -192
- data/_data/base/project.yml +0 -37
- data/_data/base/project_schema.yml +0 -124
- data/_data/base/script_schema.yml +0 -41
- data/_data/base/shortcut_schema.yml +0 -74
- data/_data/base/social.yml +0 -26
- data/_data/base/social_schema.yml +0 -57
- data/_data/base/sponsors.yml +0 -41
- data/_data/base/sponsors_schema.yml +0 -73
- data/_data/base/title_schema.yml +0 -49
- data/_data/base/toc_schema.yml +0 -114
- data/_data/download/cards.yml +0 -309
- data/_data/download/navbar.yml +0 -11
- data/_includes/base/announcement.html.liquid +0 -65
- data/_includes/base/artwork.html.liquid +0 -63
- data/_includes/base/backtotop.html.liquid +0 -73
- data/_includes/base/bits.html.liquid +0 -152
- data/_includes/base/breadcrumb.html.liquid +0 -77
- data/_includes/base/breakingnews.html.liquid +0 -90
- data/_includes/base/card.html.liquid +0 -110
- data/_includes/base/color-table.html.liquid +0 -33
- data/_includes/base/configuration_variables-nested.html.liquid +0 -98
- data/_includes/base/configuration_variables.html.liquid +0 -98
- data/_includes/base/content.html.liquid +0 -7
- data/_includes/base/copyright.html.liquid +0 -70
- data/_includes/base/copyvalue.html.liquid +0 -82
- data/_includes/base/datatable.html.liquid +0 -83
- data/_includes/base/event.html.liquid +0 -105
- data/_includes/base/fontawesome.html.liquid +0 -91
- data/_includes/base/footer.html.liquid +0 -69
- data/_includes/base/head.html.liquid +0 -135
- data/_includes/base/heading_anchor.html.liquid +0 -67
- data/_includes/base/highlight.html.liquid +0 -84
- data/_includes/base/image.html.liquid +0 -42
- data/_includes/base/link.html.liquid +0 -129
- data/_includes/base/locales.html.liquid +0 -78
- data/_includes/base/navbar.html.liquid +0 -121
- data/_includes/base/navindex.html.liquid +0 -200
- data/_includes/base/ogp.html.liquid +0 -144
- data/_includes/base/project.html.liquid +0 -104
- data/_includes/base/shortcut.html.liquid +0 -77
- data/_includes/base/social.html.liquid +0 -76
- data/_includes/base/sponsors-cards.html.liquid +0 -69
- data/_includes/base/sponsors-carousel.html.liquid +0 -91
- data/_includes/base/title.html.liquid +0 -65
- data/_includes/base/toc-generator.html.liquid +0 -189
- data/_includes/base/toc.html.liquid +0 -95
- data/_includes/download/cards-body-commands.html +0 -7
- data/_includes/download/cards-body-convert.html +0 -10
- data/_includes/download/cards-body-doc.html +0 -9
- data/_includes/download/cards-body-documentation.html +0 -11
- data/_includes/download/cards-body-eol.html +0 -16
- data/_includes/download/cards-body-mirrors.html +0 -8
- data/_includes/download/cards-body-screenshot.html +0 -26
- data/_includes/download/cards-body-screenshots.html +0 -32
- data/_includes/download/cards-body.html +0 -8
- data/_includes/download/cards-header-commands.html +0 -8
- data/_includes/download/cards-header-convert.html +0 -8
- data/_includes/download/cards-header-doc.html +0 -8
- data/_includes/download/cards-header-documentation.html +0 -8
- data/_includes/download/cards-header-eol.html +0 -8
- data/_includes/download/cards-header-mirrors.html +0 -13
- data/_includes/download/cards-header-screenshot.html +0 -8
- data/_includes/download/cards-header-screenshots.html +0 -8
- data/_includes/download/cards-header.html +0 -13
- data/_includes/download/cards.html +0 -120
- data/_layouts/base/default.html +0 -68
- data/_layouts/download/default.html +0 -7
- data/_layouts/people/default.html +0 -68
- data/_sass/base/_customization.scss +0 -331
- data/_sass/base/_light-dark.scss +0 -10
- data/_sass/base/_maps.scss +0 -104
- data/_sass/base/_variables.scss +0 -232
- data/_sass/bootstrap/_accordion.scss +0 -153
- data/_sass/bootstrap/_containers.scss +0 -41
- data/_sass/bootstrap/_helpers.scss +0 -12
- data/_sass/bootstrap/_maps.scss +0 -174
- data/_sass/bootstrap/_offcanvas.scss +0 -147
- data/_sass/bootstrap/_placeholders.scss +0 -51
- data/_sass/bootstrap/_variables-dark.scss +0 -102
- data/_sass/bootstrap/bootstrap-utilities.scss +0 -19
- data/_sass/bootstrap/forms/_floating-labels.scss +0 -97
- data/_sass/bootstrap/forms/_form-check.scss +0 -189
- data/_sass/bootstrap/forms/_form-control.scss +0 -214
- data/_sass/bootstrap/forms/_form-range.scss +0 -91
- data/_sass/bootstrap/forms/_form-select.scss +0 -80
- data/_sass/bootstrap/forms/_form-text.scss +0 -11
- data/_sass/bootstrap/forms/_input-group.scss +0 -132
- data/_sass/bootstrap/forms/_labels.scss +0 -36
- data/_sass/bootstrap/forms/_validation.scss +0 -12
- data/_sass/bootstrap/helpers/_color-bg.scss +0 -7
- data/_sass/bootstrap/helpers/_colored-links.scss +0 -30
- data/_sass/bootstrap/helpers/_focus-ring.scss +0 -5
- data/_sass/bootstrap/helpers/_icon-link.scss +0 -25
- data/_sass/bootstrap/helpers/_position.scss +0 -36
- data/_sass/bootstrap/helpers/_ratio.scss +0 -26
- data/_sass/bootstrap/helpers/_stacks.scss +0 -15
- data/_sass/bootstrap/helpers/_stretched-link.scss +0 -15
- data/_sass/bootstrap/helpers/_text-truncation.scss +0 -7
- data/_sass/bootstrap/helpers/_visually-hidden.scss +0 -8
- data/_sass/bootstrap/helpers/_vr.scss +0 -8
- data/_sass/bootstrap/mixins/_backdrop.scss +0 -14
- data/_sass/bootstrap/mixins/_banner.scss +0 -7
- data/_sass/bootstrap/mixins/_color-mode.scss +0 -21
- data/_sass/bootstrap/mixins/_color-scheme.scss +0 -7
- data/_sass/bootstrap/mixins/_container.scss +0 -11
- data/_sass/bootstrap/mixins/_table-variants.scss +0 -24
- data/_sass/bootstrap/mixins/_utilities.scss +0 -97
- data/_sass/bootstrap/mixins/_visually-hidden.scss +0 -38
- data/_sass/bootstrap/utilities/_api.scss +0 -47
- data/assets/css/base/stylesheet.min.scss +0 -35
- data/assets/icons/android-chrome-192.png +0 -0
- data/assets/icons/android-chrome-512.png +0 -0
- data/assets/icons/apple-touch-icon.png +0 -0
- data/assets/icons/favicon-16.png +0 -0
- data/assets/icons/favicon-32.png +0 -0
- data/assets/icons/favicon.ico +0 -0
- data/assets/icons/favicon.svg +0 -1
- data/assets/img/anaconda-symbolic.svg +0 -1
- data/assets/img/anaconda.svg +0 -1
- data/assets/img/base/centos-colors.gpl +0 -55
- data/assets/img/base/example-ogp-image.svg +0 -297
- data/assets/img/base/example-sponsors-design.svg +0 -226
- data/assets/img/base/example-sponsors-logo-1.svg +0 -120
- data/assets/img/base/example-sponsors-logo-2.svg +0 -116
- data/assets/img/base/example-sponsors-logo-3.svg +0 -123
- data/assets/img/base/example-sponsors-logo-4.svg +0 -116
- data/assets/img/base/example-sponsors-logo-5.svg +0 -116
- data/assets/img/base/example-sponsors-logo-6.svg +0 -116
- data/assets/img/base/example-sponsors-logo-7.svg +0 -116
- data/assets/img/base/example-sponsors-logo-8.svg +0 -110
- data/assets/img/base/page-layout-default.svg +0 -1217
- data/assets/img/base/page-with-alert.svg +0 -383
- data/assets/img/base/page-with-announcement.svg +0 -956
- data/assets/img/base/page-with-artwork.svg +0 -1009
- data/assets/img/base/page-with-backtotop.svg +0 -1009
- data/assets/img/base/page-with-bits.svg +0 -891
- data/assets/img/base/page-with-breadcrumb.svg +0 -676
- data/assets/img/base/page-with-breakingnews.svg +0 -957
- data/assets/img/base/page-with-color.svg +0 -57
- data/assets/img/base/page-with-copyright.svg +0 -1018
- data/assets/img/base/page-with-copyvalue.svg +0 -57
- data/assets/img/base/page-with-datatable.svg +0 -857
- data/assets/img/base/page-with-event.svg +0 -518
- data/assets/img/base/page-with-fontawesome.svg +0 -147
- data/assets/img/base/page-with-footer.svg +0 -1018
- data/assets/img/base/page-with-heading.svg +0 -57
- data/assets/img/base/page-with-highlight.svg +0 -86
- data/assets/img/base/page-with-image.svg +0 -57
- data/assets/img/base/page-with-link.svg +0 -57
- data/assets/img/base/page-with-locales.svg +0 -1009
- data/assets/img/base/page-with-navbar.svg +0 -958
- data/assets/img/base/page-with-navindex.svg +0 -279
- data/assets/img/base/page-with-ogp.svg +0 -401
- data/assets/img/base/page-with-project.svg +0 -423
- data/assets/img/base/page-with-shortcut.svg +0 -937
- data/assets/img/base/page-with-social.svg +0 -937
- data/assets/img/base/page-with-sponsors.svg +0 -937
- data/assets/img/base/page-with-title.svg +0 -584
- data/assets/img/base/page-with-toc.svg +0 -399
- data/assets/img/base/screenshot-1200x600.svg +0 -114
- data/assets/img/centos-dynamicmsg-logo.svg +0 -1
- data/assets/img/centos-dynamicmsg-type.svg +0 -1
- data/assets/img/centos-dynamicmsg-whitelogo.svg +0 -1
- data/assets/img/centos-dynamicmsg-whitetype.svg +0 -1
- data/assets/img/centos-gdm-whitelogo.svg +0 -1
- data/assets/img/centos-ipa-whiteheader.svg +0 -1
- data/assets/img/centos-logo-2bits.svg +0 -1
- data/assets/img/centos-logo.svg +0 -1
- data/assets/img/centos-message-logo.svg +0 -1
- data/assets/img/centos-poweredby-logo.svg +0 -1
- data/assets/img/centos-social-share.png +0 -0
- data/assets/img/centos-symbol-2bits.svg +0 -1
- data/assets/img/centos-symbol.svg +0 -1
- data/assets/img/centos-type.svg +0 -1
- data/assets/img/centos-vertical-logo.svg +0 -1
- data/assets/img/centos-vertical-message-logo.svg +0 -1
- data/assets/img/centos-whitelogo.svg +0 -1
- data/assets/img/download/centos-linux-7-2009-screenshot-n.png +0 -0
- data/assets/img/download/centos-stream-8-screenshot-n.png +0 -0
- data/assets/img/download/centos-stream-9-screenshot-n.png +0 -0
- data/assets/img/download/distribution-release-screenshot-1.png +0 -0
- data/assets/img/download/distribution-release-screenshot-2.png +0 -0
- data/assets/img/download/distribution-release-screenshot-3.png +0 -0
- data/assets/img/download/distribution-release-screenshot-n.png +0 -0
- data/assets/img/download/distribution-release-screenshot-n.svg +0 -134
- data/assets/img/download/download.svg +0 -421
- data/assets/img/download/fig-the-downloads-cards-presentation-template.png +0 -0
- data/assets/img/people/page.svg +0 -900
- data/assets/img/people/page.webp +0 -0
- data/assets/img/people/username.webp +0 -0
- data/assets/js/base/backtotop.js +0 -20
- data/assets/js/base/copyvalue.js +0 -145
- data/assets/js/base/datatable.js +0 -41
- data/assets/js/base/heading-anchor.js +0 -108
- data/assets/js/base/highlight.js +0 -12
- data/assets/js/base/init-tooltips.js +0 -12
- data/assets/js/bootstrap.bundle.js +0 -6312
- data/assets/js/bootstrap.bundle.js.map +0 -1
- data/assets/js/bootstrap.bundle.min.js +0 -7
- data/assets/js/bootstrap.bundle.min.js.map +0 -1
- data/assets/js/bootstrap.esm.js +0 -4447
- data/assets/js/bootstrap.esm.js.map +0 -1
- data/assets/js/bootstrap.esm.min.js +0 -7
- data/assets/js/bootstrap.esm.min.js.map +0 -1
- data/assets/js/bootstrap.js +0 -4494
- data/assets/js/bootstrap.js.map +0 -1
- data/site.webmanifest +0 -11
data/_data/base/color.yml
DELETED
|
@@ -1,1042 +0,0 @@
|
|
|
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: "#844072"
|
|
227
|
-
rgb: "132, 64, 114"
|
|
228
|
-
hsv: "316° / 52% / 52%"
|
|
229
|
-
text_color: "White"
|
|
230
|
-
text_color_hex: "#FFFFFF"
|
|
231
|
-
contrast_ratio: "7.10:1"
|
|
232
|
-
wcag_2_2_aa: true
|
|
233
|
-
wcag_2_2_aa_margin: "+2.60:1"
|
|
234
|
-
wcag_2_2_aaa: true
|
|
235
|
-
wcag_2_2_aaa_margin: "+0.10:1"
|
|
236
|
-
hue: "316°"
|
|
237
|
-
saturation: "52%"
|
|
238
|
-
lightness: "52%"
|
|
239
|
-
text_badge: "text-bg-centos-purple-600"
|
|
240
|
-
full_name: "$centos-purple-600"
|
|
241
|
-
- shade: 700
|
|
242
|
-
hex: "#673259"
|
|
243
|
-
rgb: "103, 50, 89"
|
|
244
|
-
hsv: "316° / 51% / 40%"
|
|
245
|
-
text_color: "White"
|
|
246
|
-
text_color_hex: "#FFFFFF"
|
|
247
|
-
contrast_ratio: "9.65:1"
|
|
248
|
-
wcag_2_2_aa: true
|
|
249
|
-
wcag_2_2_aa_margin: "+5.15:1"
|
|
250
|
-
wcag_2_2_aaa: true
|
|
251
|
-
wcag_2_2_aaa_margin: "+2.65:1"
|
|
252
|
-
hue: "316°"
|
|
253
|
-
saturation: "51%"
|
|
254
|
-
lightness: "40%"
|
|
255
|
-
text_badge: "text-bg-centos-purple-700"
|
|
256
|
-
full_name: "$centos-purple-700"
|
|
257
|
-
- shade: 800
|
|
258
|
-
hex: "#4C2241"
|
|
259
|
-
rgb: "76, 34, 65"
|
|
260
|
-
hsv: "316° / 55% / 30%"
|
|
261
|
-
text_color: "White"
|
|
262
|
-
text_color_hex: "#FFFFFF"
|
|
263
|
-
contrast_ratio: "13.02:1"
|
|
264
|
-
wcag_2_2_aa: true
|
|
265
|
-
wcag_2_2_aa_margin: "+8.52:1"
|
|
266
|
-
wcag_2_2_aaa: true
|
|
267
|
-
wcag_2_2_aaa_margin: "+6.02: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: "#471139"
|
|
275
|
-
rgb: "71, 17, 57"
|
|
276
|
-
hsv: "316° / 76% / 28%"
|
|
277
|
-
text_color: "White"
|
|
278
|
-
text_color_hex: "#FFFFFF"
|
|
279
|
-
contrast_ratio: "14.92:1"
|
|
280
|
-
wcag_2_2_aa: true
|
|
281
|
-
wcag_2_2_aa_margin: "+10.42:1"
|
|
282
|
-
wcag_2_2_aaa: true
|
|
283
|
-
wcag_2_2_aaa_margin: "+7.92:1"
|
|
284
|
-
hue: "316°"
|
|
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: "#D18C0F"
|
|
404
|
-
rgb: "209, 140, 15"
|
|
405
|
-
hsv: "39° / 93% / 82%"
|
|
406
|
-
text_color: "Black"
|
|
407
|
-
text_color_hex: "#000000"
|
|
408
|
-
contrast_ratio: "7.47:1"
|
|
409
|
-
wcag_2_2_aa: true
|
|
410
|
-
wcag_2_2_aa_margin: "+2.97:1"
|
|
411
|
-
wcag_2_2_aaa: true
|
|
412
|
-
wcag_2_2_aaa_margin: "+0.47: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: "#A36D0B"
|
|
420
|
-
rgb: "163, 109, 11"
|
|
421
|
-
hsv: "39° / 93% / 64%"
|
|
422
|
-
text_color: "Black"
|
|
423
|
-
text_color_hex: "#000000"
|
|
424
|
-
contrast_ratio: "4.75:1"
|
|
425
|
-
wcag_2_2_aa: true
|
|
426
|
-
wcag_2_2_aa_margin: "+0.25:1"
|
|
427
|
-
wcag_2_2_aaa: false
|
|
428
|
-
wcag_2_2_aaa_margin: "-2.25: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: "#7A4F03"
|
|
436
|
-
rgb: "122, 79, 3"
|
|
437
|
-
hsv: "38° / 98% / 48%"
|
|
438
|
-
text_color: "White"
|
|
439
|
-
text_color_hex: "#FFFFFF"
|
|
440
|
-
contrast_ratio: "7.13:1"
|
|
441
|
-
wcag_2_2_aa: true
|
|
442
|
-
wcag_2_2_aa_margin: "+2.63:1"
|
|
443
|
-
wcag_2_2_aaa: true
|
|
444
|
-
wcag_2_2_aaa_margin: "+0.13:1"
|
|
445
|
-
hue: "38°"
|
|
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: "#5F3D00"
|
|
452
|
-
rgb: "95, 61, 0"
|
|
453
|
-
hsv: "39° / 100% / 37%"
|
|
454
|
-
text_color: "White"
|
|
455
|
-
text_color_hex: "#FFFFFF"
|
|
456
|
-
contrast_ratio: "9.75:1"
|
|
457
|
-
wcag_2_2_aa: true
|
|
458
|
-
wcag_2_2_aa_margin: "+5.25:1"
|
|
459
|
-
wcag_2_2_aaa: true
|
|
460
|
-
wcag_2_2_aaa_margin: "+2.75:1"
|
|
461
|
-
hue: "39°"
|
|
462
|
-
saturation: "100%"
|
|
463
|
-
lightness: "37%"
|
|
464
|
-
text_badge: "text-bg-centos-orange-900"
|
|
465
|
-
full_name: "$centos-orange-900"
|
|
466
|
-
- shade: 950
|
|
467
|
-
hex: "#281A00"
|
|
468
|
-
rgb: "40, 26, 0"
|
|
469
|
-
hsv: "39° / 100% / 16%"
|
|
470
|
-
text_color: "White"
|
|
471
|
-
text_color_hex: "#FFFFFF"
|
|
472
|
-
contrast_ratio: "16.96:1"
|
|
473
|
-
wcag_2_2_aa: true
|
|
474
|
-
wcag_2_2_aa_margin: "+12.46:1"
|
|
475
|
-
wcag_2_2_aaa: true
|
|
476
|
-
wcag_2_2_aaa_margin: "+9.96:1"
|
|
477
|
-
hue: "39°"
|
|
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: "#1F1E63"
|
|
581
|
-
rgb: "31, 30, 99"
|
|
582
|
-
hsv: "241° / 70% / 39%"
|
|
583
|
-
text_color: "White"
|
|
584
|
-
text_color_hex: "#FFFFFF"
|
|
585
|
-
contrast_ratio: "14.75:1"
|
|
586
|
-
wcag_2_2_aa: true
|
|
587
|
-
wcag_2_2_aa_margin: "+10.25:1"
|
|
588
|
-
wcag_2_2_aaa: true
|
|
589
|
-
wcag_2_2_aaa_margin: "+7.75:1"
|
|
590
|
-
hue: "241°"
|
|
591
|
-
saturation: "70%"
|
|
592
|
-
lightness: "39%"
|
|
593
|
-
text_badge: "text-bg-centos-blue-600"
|
|
594
|
-
full_name: "$centos-blue-600"
|
|
595
|
-
- shade: 700
|
|
596
|
-
hex: "#19184F"
|
|
597
|
-
rgb: "25, 24, 79"
|
|
598
|
-
hsv: "241° / 70% / 31%"
|
|
599
|
-
text_color: "White"
|
|
600
|
-
text_color_hex: "#FFFFFF"
|
|
601
|
-
contrast_ratio: "16.34:1"
|
|
602
|
-
wcag_2_2_aa: true
|
|
603
|
-
wcag_2_2_aa_margin: "+11.84:1"
|
|
604
|
-
wcag_2_2_aaa: true
|
|
605
|
-
wcag_2_2_aaa_margin: "+9.34:1"
|
|
606
|
-
hue: "241°"
|
|
607
|
-
saturation: "70%"
|
|
608
|
-
lightness: "31%"
|
|
609
|
-
text_badge: "text-bg-centos-blue-700"
|
|
610
|
-
full_name: "$centos-blue-700"
|
|
611
|
-
- shade: 800
|
|
612
|
-
hex: "#10103D"
|
|
613
|
-
rgb: "16, 16, 61"
|
|
614
|
-
hsv: "240° / 74% / 24%"
|
|
615
|
-
text_color: "White"
|
|
616
|
-
text_color_hex: "#FFFFFF"
|
|
617
|
-
contrast_ratio: "18.05:1"
|
|
618
|
-
wcag_2_2_aa: true
|
|
619
|
-
wcag_2_2_aa_margin: "+13.55:1"
|
|
620
|
-
wcag_2_2_aaa: true
|
|
621
|
-
wcag_2_2_aaa_margin: "+11.05:1"
|
|
622
|
-
hue: "240°"
|
|
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: "#020146"
|
|
629
|
-
rgb: "2, 1, 70"
|
|
630
|
-
hsv: "241° / 99% / 27%"
|
|
631
|
-
text_color: "White"
|
|
632
|
-
text_color_hex: "#FFFFFF"
|
|
633
|
-
contrast_ratio: "19.17:1"
|
|
634
|
-
wcag_2_2_aa: true
|
|
635
|
-
wcag_2_2_aa_margin: "+14.67:1"
|
|
636
|
-
wcag_2_2_aaa: true
|
|
637
|
-
wcag_2_2_aaa_margin: "+12.17:1"
|
|
638
|
-
hue: "241°"
|
|
639
|
-
saturation: "99%"
|
|
640
|
-
lightness: "27%"
|
|
641
|
-
text_badge: "text-bg-centos-blue-900"
|
|
642
|
-
full_name: "$centos-blue-900"
|
|
643
|
-
- shade: 950
|
|
644
|
-
hex: "#000028"
|
|
645
|
-
rgb: "0, 0, 40"
|
|
646
|
-
hsv: "240° / 100% / 16%"
|
|
647
|
-
text_color: "White"
|
|
648
|
-
text_color_hex: "#FFFFFF"
|
|
649
|
-
contrast_ratio: "20.38:1"
|
|
650
|
-
wcag_2_2_aa: true
|
|
651
|
-
wcag_2_2_aa_margin: "+15.88:1"
|
|
652
|
-
wcag_2_2_aaa: true
|
|
653
|
-
wcag_2_2_aaa_margin: "+13.38: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: "#49620F"
|
|
790
|
-
rgb: "73, 98, 15"
|
|
791
|
-
hsv: "78° / 85% / 38%"
|
|
792
|
-
text_color: "White"
|
|
793
|
-
text_color_hex: "#FFFFFF"
|
|
794
|
-
contrast_ratio: "6.91:1"
|
|
795
|
-
wcag_2_2_aa: true
|
|
796
|
-
wcag_2_2_aa_margin: "+2.41:1"
|
|
797
|
-
wcag_2_2_aaa: false
|
|
798
|
-
wcag_2_2_aaa_margin: "-0.09:1"
|
|
799
|
-
hue: "78°"
|
|
800
|
-
saturation: "85%"
|
|
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: "#1C2800"
|
|
822
|
-
rgb: "28, 40, 0"
|
|
823
|
-
hsv: "78° / 100% / 16%"
|
|
824
|
-
text_color: "White"
|
|
825
|
-
text_color_hex: "#FFFFFF"
|
|
826
|
-
contrast_ratio: "15.52:1"
|
|
827
|
-
wcag_2_2_aa: true
|
|
828
|
-
wcag_2_2_aa_margin: "+11.02:1"
|
|
829
|
-
wcag_2_2_aaa: true
|
|
830
|
-
wcag_2_2_aaa_margin: "+8.52: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
|