mirror of
https://github.com/johndoe6345789/WizardMerge.git
synced 2026-04-24 13:44:55 +00:00
14 lines
258 B
Python
14 lines
258 B
Python
"""Built-in dark theme."""
|
|
from wizardmerge.themes.base import Theme
|
|
|
|
|
|
palette = {
|
|
"background": "#0d1117",
|
|
"surface": "#161b22",
|
|
"text": "#e6edf3",
|
|
"accent": "#7c9aff",
|
|
"border": "#30363d",
|
|
}
|
|
|
|
theme = Theme(name="Dark", palette=palette)
|