mirror of
https://github.com/certd/certd.git
synced 2026-07-21 18:37:33 +08:00
chore: code format
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import type { BuiltinThemeType } from '/@/vben/typings';
|
||||
import type { BuiltinThemeType } from "/@/vben/typings";
|
||||
|
||||
interface BuiltinThemePreset {
|
||||
color: string;
|
||||
@@ -9,75 +9,75 @@ interface BuiltinThemePreset {
|
||||
|
||||
const BUILT_IN_THEME_PRESETS: BuiltinThemePreset[] = [
|
||||
{
|
||||
color: 'hsl(212 100% 45%)',
|
||||
type: 'default',
|
||||
color: "hsl(212 100% 45%)",
|
||||
type: "default",
|
||||
},
|
||||
{
|
||||
color: 'hsl(245 82% 67%)',
|
||||
type: 'violet',
|
||||
color: "hsl(245 82% 67%)",
|
||||
type: "violet",
|
||||
},
|
||||
{
|
||||
color: 'hsl(347 77% 60%)',
|
||||
type: 'pink',
|
||||
color: "hsl(347 77% 60%)",
|
||||
type: "pink",
|
||||
},
|
||||
{
|
||||
color: 'hsl(42 84% 61%)',
|
||||
type: 'yellow',
|
||||
color: "hsl(42 84% 61%)",
|
||||
type: "yellow",
|
||||
},
|
||||
{
|
||||
color: 'hsl(231 98% 65%)',
|
||||
type: 'sky-blue',
|
||||
color: "hsl(231 98% 65%)",
|
||||
type: "sky-blue",
|
||||
},
|
||||
{
|
||||
color: 'hsl(161 90% 43%)',
|
||||
type: 'green',
|
||||
color: "hsl(161 90% 43%)",
|
||||
type: "green",
|
||||
},
|
||||
{
|
||||
color: 'hsl(240 5% 26%)',
|
||||
darkPrimaryColor: 'hsl(0 0% 98%)',
|
||||
primaryColor: 'hsl(240 5.9% 10%)',
|
||||
type: 'zinc',
|
||||
color: "hsl(240 5% 26%)",
|
||||
darkPrimaryColor: "hsl(0 0% 98%)",
|
||||
primaryColor: "hsl(240 5.9% 10%)",
|
||||
type: "zinc",
|
||||
},
|
||||
|
||||
{
|
||||
color: 'hsl(181 84% 32%)',
|
||||
type: 'deep-green',
|
||||
color: "hsl(181 84% 32%)",
|
||||
type: "deep-green",
|
||||
},
|
||||
|
||||
{
|
||||
color: 'hsl(211 91% 39%)',
|
||||
type: 'deep-blue',
|
||||
color: "hsl(211 91% 39%)",
|
||||
type: "deep-blue",
|
||||
},
|
||||
{
|
||||
color: 'hsl(18 89% 40%)',
|
||||
type: 'orange',
|
||||
color: "hsl(18 89% 40%)",
|
||||
type: "orange",
|
||||
},
|
||||
{
|
||||
color: 'hsl(0 75% 42%)',
|
||||
type: 'rose',
|
||||
color: "hsl(0 75% 42%)",
|
||||
type: "rose",
|
||||
},
|
||||
|
||||
{
|
||||
color: 'hsl(0 0% 25%)',
|
||||
darkPrimaryColor: 'hsl(0 0% 98%)',
|
||||
primaryColor: 'hsl(240 5.9% 10%)',
|
||||
type: 'neutral',
|
||||
color: "hsl(0 0% 25%)",
|
||||
darkPrimaryColor: "hsl(0 0% 98%)",
|
||||
primaryColor: "hsl(240 5.9% 10%)",
|
||||
type: "neutral",
|
||||
},
|
||||
{
|
||||
color: 'hsl(215 25% 27%)',
|
||||
darkPrimaryColor: 'hsl(0 0% 98%)',
|
||||
primaryColor: 'hsl(240 5.9% 10%)',
|
||||
type: 'slate',
|
||||
color: "hsl(215 25% 27%)",
|
||||
darkPrimaryColor: "hsl(0 0% 98%)",
|
||||
primaryColor: "hsl(240 5.9% 10%)",
|
||||
type: "slate",
|
||||
},
|
||||
{
|
||||
color: 'hsl(217 19% 27%)',
|
||||
darkPrimaryColor: 'hsl(0 0% 98%)',
|
||||
primaryColor: 'hsl(240 5.9% 10%)',
|
||||
type: 'gray',
|
||||
color: "hsl(217 19% 27%)",
|
||||
darkPrimaryColor: "hsl(0 0% 98%)",
|
||||
primaryColor: "hsl(240 5.9% 10%)",
|
||||
type: "gray",
|
||||
},
|
||||
{
|
||||
color: '',
|
||||
type: 'custom',
|
||||
color: "",
|
||||
type: "custom",
|
||||
},
|
||||
];
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ import type {
|
||||
PageTransitionType,
|
||||
PreferencesButtonPositionType,
|
||||
TabsStyleType,
|
||||
ThemeModeType
|
||||
ThemeModeType,
|
||||
} from "/@/vben/typings";
|
||||
|
||||
type SupportedLanguagesType = "en-US" | "zh-CN";
|
||||
@@ -288,5 +288,5 @@ export type {
|
||||
TabbarPreferences,
|
||||
ThemePreferences,
|
||||
TransitionPreferences,
|
||||
WidgetPreferences
|
||||
WidgetPreferences,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user