mirror of
https://github.com/aykhans/slash-e.git
synced 2025-06-15 04:17:50 +00:00
feat: add color theme user setting definition
This commit is contained in:
@ -34,6 +34,14 @@ message UserSetting {
|
||||
}
|
||||
// locale is the user locale.
|
||||
Locale locale = 2;
|
||||
|
||||
enum ColorTheme {
|
||||
COLOR_THEME_UNSPECIFIED = 0;
|
||||
COLOR_THEME_LIGHT = 1;
|
||||
COLOR_THEME_DARK = 2;
|
||||
}
|
||||
// color_theme is the user color theme.
|
||||
ColorTheme color_theme = 3;
|
||||
}
|
||||
|
||||
message GetUserSettingRequest {
|
||||
|
Reference in New Issue
Block a user