Skip to content
Merged
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Added `mode` argument to `push_screen` and `push_screen_wait` to enable pushing a screen to a non-active mode https://github.com/Textualize/textual/pull/6362
- Added `App.mode_change_signal` and `App.screen_change_signal` https://github.com/Textualize/textual/pull/6362
- Added `Tabs.get_tab` https://github.com/Textualize/textual/pull/6362
- Added Catppuccin Frappe and Macchiato themes https://github.com/Textualize/textual/pull/6335

### Changed

Expand Down
50 changes: 50 additions & 0 deletions src/textual/theme.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,56 @@ def to_color_system(self) -> ColorSystem:
"button-color-foreground": "#EFF1F5",
},
),
"catppuccin-frappe": Theme(
name="catppuccin-frappe",
primary="#CA9EE6",
secondary="#EF9F76",
warning="#E5C890",
error="#E78284",
success="#A6D189",
accent="#F4B8E4",
foreground="#C6D0F5",
background="#303446",
surface="#414559",
panel="#51576D",
dark=True,
variables={
"input-cursor-foreground": "#232634",
"input-cursor-background": "#F2D5CF",
"input-selection-background": "#949CBB 30%",
"border": "#BABBF1",
"border-blurred": "#838BA7",
"footer-background": "#51576D",
"block-cursor-foreground": "#292C3C",
"block-cursor-text-style": "none",
"button-color-foreground": "#303446",
},
),
"catppuccin-macchiato": Theme(
name="catppuccin-macchiato",
primary="#C6A0F6",
secondary="#F5A97F",
warning="#EED49F",
error="#ED8796",
success="#A6DA95",
accent="#F5BDE6",
foreground="#CAD3F5",
background="#24273A",
surface="#363A4F",
panel="#494D64",
dark=True,
variables={
"input-cursor-foreground": "#181926",
"input-cursor-background": "#F4DBD6",
"input-selection-background": "#838BA7 30%",
"border": "#B7BDF8",
"border-blurred": "#737994",
"footer-background": "#494D64",
"block-cursor-foreground": "#1E2030",
"block-cursor-text-style": "none",
"button-color-foreground": "#24273A",
},
),
"solarized-light": Theme(
name="solarized-light",
primary="#268bd2",
Expand Down
Loading