Skip to content

support dark mode #5

Description

@drom
<html data-color-mode="dark">...

https://gist.github.com/kaicataldo/f28b6adf941d1575afa78e647624a327

:root {
  /* Light theme */
  --text-color: #333333;
  --background-color: #ffffff;
}

/* Dark theme */
[data-color-scheme='dark'] {
  --text-color: #ffffff;
  --background-color: #181b25;
}

body {
  color: var(--text-color); 
  background-color: var(--background-color);
}

https://livecodestream.dev/post/a-better-approach-to-dark-mode-on-your-website/

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Fields

    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions