theme2: Add Sandcastle theme

This commit is contained in:
Marshall Bowers 2023-10-25 17:27:25 +02:00
parent 751df45263
commit cee8175c19
3 changed files with 102 additions and 2 deletions

View file

@ -1,4 +1,7 @@
use crate::{themes::one_dark, Theme, ThemeMetadata};
use crate::{
themes::{one_dark, sandcastle},
Theme, ThemeMetadata,
};
use anyhow::{anyhow, Result};
use gpui2::SharedString;
use std::{collections::HashMap, sync::Arc};
@ -37,7 +40,7 @@ impl Default for ThemeRegistry {
themes: HashMap::default(),
};
this.insert_themes([one_dark()]);
this.insert_themes([one_dark(), sandcastle()]);
this
}