mirror of
https://github.com/elyby/accounts-frontend.git
synced 2025-05-31 14:11:58 +05:30
Change prettier rules
This commit is contained in:
@@ -1,13 +1,4 @@
|
||||
export type Color =
|
||||
| 'green'
|
||||
| 'blue'
|
||||
| 'darkBlue'
|
||||
| 'violet'
|
||||
| 'lightViolet'
|
||||
| 'orange'
|
||||
| 'red'
|
||||
| 'black'
|
||||
| 'white';
|
||||
export type Color = 'green' | 'blue' | 'darkBlue' | 'violet' | 'lightViolet' | 'orange' | 'red' | 'black' | 'white';
|
||||
|
||||
export type Skin = 'dark' | 'light';
|
||||
|
||||
@@ -22,15 +13,15 @@ export const COLOR_BLACK: Color = 'black';
|
||||
export const COLOR_WHITE: Color = 'white';
|
||||
|
||||
export const colors: Array<Color> = [
|
||||
COLOR_GREEN,
|
||||
COLOR_BLUE,
|
||||
COLOR_DARK_BLUE,
|
||||
COLOR_VIOLET,
|
||||
COLOR_LIGHT_VIOLET,
|
||||
COLOR_ORANGE,
|
||||
COLOR_RED,
|
||||
COLOR_BLACK,
|
||||
COLOR_WHITE,
|
||||
COLOR_GREEN,
|
||||
COLOR_BLUE,
|
||||
COLOR_DARK_BLUE,
|
||||
COLOR_VIOLET,
|
||||
COLOR_LIGHT_VIOLET,
|
||||
COLOR_ORANGE,
|
||||
COLOR_RED,
|
||||
COLOR_BLACK,
|
||||
COLOR_WHITE,
|
||||
];
|
||||
|
||||
export const SKIN_DARK: Skin = 'dark';
|
||||
|
Reference in New Issue
Block a user