Skip to content

Commit

Permalink
Update badge colors
Browse files Browse the repository at this point in the history
  • Loading branch information
ddhodge committed Sep 17, 2024
1 parent 1525ced commit 61fa542
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
13 changes: 7 additions & 6 deletions docs/assets/scss/_yb_badge.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
border-radius: 6px;
text-decoration: none;
margin: 0 10px;
background: #7879f1;
border: 1px solid #7879f1;
color: #fff;
background: #E8E9FE;
border: 1px solid #E8E9FE;
color: #4F4FA4;
justify-content: center;
align-items: center;
position: relative;
Expand All @@ -23,13 +23,14 @@
}

&.tech-preview {
background: #ff603b;
border: 1px solid #ff603b;
background: #ffeec8;
border: 1px solid #ffeec8;
color: #9d6c00;

&:hover,
&:focus,
&:active {
background: rgba(255, 96, 59, 0.8);
background: rgba(255, 238, 200, 0.8);
}
}

Expand Down
2 changes: 1 addition & 1 deletion docs/layouts/shortcodes/badge/ea.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{{/* version is the first path of the path. eg: preview/stable/v2.12 ...*/}}
{{- $version := index $path 0 -}}
<a class="yb-badge"
style="background: #7879F1; color:#FFF; border: 0px solid #7879F1; margin: 0px;"
style="background: #E8E9FE; color:#4F4FA4; border: 0px solid #E8E9FE; margin: 0px;"
href="/preview/releases/versioning/#feature-maturity">
EA
</a>
2 changes: 1 addition & 1 deletion docs/layouts/shortcodes/badge/ga.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{{/* version is the first path of the path. eg: preview/stable/v2.12 ...*/}}
{{- $version := index $path 0 -}}
<a class="yb-badge"
style="background: #CDEFE1; color:#4E5F6D; border: 0px solid #CDEFE1; margin: 0px;"
style="background: #CDEFE1; color:#097345; border: 0px solid #CDEFE1; margin: 0px;"
href="/preview/releases/versioning/#feature-maturity">
GA
</a>
2 changes: 1 addition & 1 deletion docs/layouts/shortcodes/badge/tp.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{{/* version is the first path of the path. eg: preview/stable/v2.12 ...*/}}
{{- $version := index $path 0 -}}
<a class="yb-badge"
style="background: #FF603B; color:#FFF; border: 0px solid #FF603B; margin: 0px;"
style="background: #FFEEC8; color:#9D6C00; border: 0px solid #FFEEC8; margin: 0px;"
href="/preview/releases/versioning/#feature-maturity">
TP
</a>

0 comments on commit 61fa542

Please sign in to comment.