theme2: Add Rosé Pine themes

This commit is contained in:
Marshall Bowers 2023-10-25 17:38:48 +02:00
parent cee8175c19
commit c8a86c2dd1
4 changed files with 304 additions and 4 deletions

View file

@ -1,5 +1,5 @@
use crate::{
themes::{one_dark, sandcastle},
themes::{one_dark, rose_pine, rose_pine_dawn, rose_pine_moon, sandcastle},
Theme, ThemeMetadata,
};
use anyhow::{anyhow, Result};
@ -40,7 +40,13 @@ impl Default for ThemeRegistry {
themes: HashMap::default(),
};
this.insert_themes([one_dark(), sandcastle()]);
this.insert_themes([
one_dark(),
rose_pine(),
rose_pine_dawn(),
rose_pine_moon(),
sandcastle(),
]);
this
}