Created
April 23, 2024 15:18
-
-
Save seothemes/20b31223720ebd8c92a54b9f889289e1 to your computer and use it in GitHub Desktop.
dark mode palette custom properties
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media (prefers-color-scheme: dark) { | |
body { | |
--wp--custom--color--body: #fff; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://schemas.wp.org/trunk/theme.json", | |
"version": 2, | |
"settings": { | |
"custom": { | |
"body": "#000" | |
}, | |
"color": { | |
"palette": [ | |
{ | |
"name": "Body", | |
"slug": "body", | |
"color": "var(--wp--custom--color--body)" | |
} | |
] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment