Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# commit-check.github.io

[![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)
[![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)

This repository contains the source code for the [commit-check.github.io](https://commit-check.github.io) website.
20 changes: 10 additions & 10 deletions docs/stylesheets/extra.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,27 @@ th {
}

:root > * {
--commit-check-logo-color-green: #009485;
--commit-check-logo-color-blue: #2c9ccd;
--commit-check-logo-color-yellow: #ffffff;
}

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

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

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

/* Hero section styling */
Expand Down
12 changes: 6 additions & 6 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,26 +29,26 @@ theme:
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
primary: teal
accent: teal
primary: blue
accent: light blue
toggle:
icon: material/brightness-auto
name: Switch to light mode

# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
accent: teal
primary: blue
accent: light blue
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode

# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: teal
accent: teal
primary: blue
accent: light blue
toggle:
icon: material/lightbulb
name: Switch to system preference
Expand Down