Skip to content

Convert site theme to monochrome grayscale palette#11

Closed
ankush with Copilot wants to merge 5 commits into
developfrom
copilot/remove-colours-and-make-it-bw
Closed

Convert site theme to monochrome grayscale palette#11
ankush with Copilot wants to merge 5 commits into
developfrom
copilot/remove-colours-and-make-it-bw

Conversation

Copilot AI commented Jul 7, 2026

Copy link
Copy Markdown

The site theme still used a multi-color Dracula palette, while the requirement is fully black-and-white rendering. This PR replaces the palette with grayscale-only values while preserving existing layout and style semantics.

  • Theme palette update

    • Replaced color variables in src/templates/style.css with grayscale equivalents (#000000#ffffff range).
    • Removed all chromatic accents from links, headings, metadata, and code surfaces by remapping their existing variables.
  • Visual hierarchy preserved in B/W

    • Kept the existing semantic variable model (--d-*) and selectors unchanged.
    • Assigned distinct gray levels across semantic tokens to retain contrast and readability (instead of collapsing everything to white/black).
  • Scope

    • Single-file, CSS-only change in src/templates/style.css.
    • No template or runtime logic changes.
:root {
  --bg-color: #000000;
  --fg-color: #ffffff;
  --d-comment: #c7c7c7;
  --d-cyan: #9a9a9a;
  --d-green: #bdbdbd;
  --d-orange: #8a8a8a;
  --d-pink: #d9d9d9;
  --d-purple: #ababab;
  --d-red: #767676;
  --d-yellow: #f0f0f0;
}

Copilot AI linked an issue Jul 7, 2026 that may be closed by this pull request
Copilot AI changed the title [WIP] Remove colours and convert to black and white Convert site theme to monochrome grayscale palette Jul 7, 2026
Copilot finished work on behalf of ankush July 7, 2026 08:46
Copilot AI requested a review from ankush July 7, 2026 08:46
@ankush ankush closed this Jul 8, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

remove colours and make it b&w

2 participants