Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(theme): add mockingbird theme (@chinmaydwivedi) #5839

Closed
wants to merge 3 commits into from
Closed
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
8 changes: 8 additions & 0 deletions frontend/static/themes/_list.json
Original file line number Diff line number Diff line change
Expand Up @@ -1244,5 +1244,13 @@
"mainColor": "#e0794e",
"subColor": "#688e8f",
"textColor": "#023e3b"
},

{
"name": "mockingbird",
"bgColor": "#f5f5f5",
"mainColor": "#dcdcdc",
"subColor": "#808080",
"textColor": "#2f4f4f"
}
]
13 changes: 13 additions & 0 deletions frontend/static/themes/mockingbird.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
:root {
--bg-color: #f5f5f5; /* Light grey resembling the soft feathers */
--main-color: #dcdcdc; /* Pale grey like the mockingbird’s body */
--caret-color: #a9a9a9; /* Dark grey for accents */
--sub-color: #808080; /* Neutral grey for sub-elements */
--sub-alt-color: #b0b0b0; /* Slightly lighter grey for alternative sub-elements */
--text-color: #2f4f4f; /* Dark slate grey for readable text */
--error-color: #8b0000; /* Deep red for errors, contrasting but subtle */
--error-extra-color: #cd5c5c; /* Rosy brown for secondary error details */
--colorful-error-color: #8b0000; /* Deep red consistent with minimalism */
--colorful-error-extra-color: #cd5c5c; /* Rosy brown for a soft contrast */
}

Loading