Skip to content

Commit af2ec7a

Browse files
authored
style: update color from #00a893 to #3badda (#2)
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Style** * Updated documentation site theme from green/teal to a blue palette. * Refreshed primary and accent colors for consistency across default, light, and dark modes. * Adjusted icon/logo accent color and badge appearance to align with the new blue theme. * **Documentation** * Applied the new blue palette across all site color schemes and configuration. * No content, navigation, or behavior changes—visual updates only. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent 9d4a41d commit af2ec7a

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# commit-check.github.io
22

3-
[![Website](https://img.shields.io/static/v1?label=Website&message=commit-check.github.io&color=009485&logo=git&logoColor=white)](https://commit-check.github.io)
3+
[![Website](https://img.shields.io/static/v1?label=Website&message=commit-check.github.io&color=2c9ccd&logo=git&logoColor=white)](https://commit-check.github.io)
44

55
This repository contains the source code for the [commit-check.github.io](https://commit-check.github.io) website.

docs/stylesheets/extra.css

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,27 @@ th {
33
}
44

55
:root > * {
6-
--commit-check-logo-color-green: #009485;
6+
--commit-check-logo-color-blue: #2c9ccd;
77
--commit-check-logo-color-yellow: #ffffff;
88
}
99

1010
/* Custom theme colors to match commit-check branding */
1111
:root {
12-
--md-primary-fg-color: #009485;
13-
--md-primary-fg-color--light: #00a893;
14-
--md-primary-fg-color--dark: #008077;
12+
--md-primary-fg-color: #2c9ccd;
13+
--md-primary-fg-color--light: #3badda;
14+
--md-primary-fg-color--dark: #258bb8;
1515
}
1616

1717
[data-md-color-scheme="default"] {
18-
--md-primary-fg-color: #009485;
19-
--md-primary-fg-color--light: #00a893;
20-
--md-primary-fg-color--dark: #008077;
18+
--md-primary-fg-color: #2c9ccd;
19+
--md-primary-fg-color--light: #3badda;
20+
--md-primary-fg-color--dark: #258bb8;
2121
}
2222

2323
[data-md-color-scheme="slate"] {
24-
--md-primary-fg-color: #009485;
25-
--md-primary-fg-color--light: #00a893;
26-
--md-primary-fg-color--dark: #008077;
24+
--md-primary-fg-color: #2c9ccd;
25+
--md-primary-fg-color--light: #3badda;
26+
--md-primary-fg-color--dark: #258bb8;
2727
}
2828

2929
/* Hero section styling */

mkdocs.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,26 +29,26 @@ theme:
2929
palette:
3030
# Palette toggle for automatic mode
3131
- media: "(prefers-color-scheme)"
32-
primary: teal
33-
accent: teal
32+
primary: blue
33+
accent: light blue
3434
toggle:
3535
icon: material/brightness-auto
3636
name: Switch to light mode
3737

3838
# Palette toggle for light mode
3939
- media: "(prefers-color-scheme: light)"
4040
scheme: default
41-
primary: teal
42-
accent: teal
41+
primary: blue
42+
accent: light blue
4343
toggle:
4444
icon: material/lightbulb-outline
4545
name: Switch to dark mode
4646

4747
# Palette toggle for dark mode
4848
- media: "(prefers-color-scheme: dark)"
4949
scheme: slate
50-
primary: teal
51-
accent: teal
50+
primary: blue
51+
accent: light blue
5252
toggle:
5353
icon: material/lightbulb
5454
name: Switch to system preference

0 commit comments

Comments
 (0)