forked from Aratramba/sanity-plugin-media-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdarkTheme.ts
55 lines (54 loc) · 2.04 KB
/
darkTheme.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
const colorBlack = '#000';
const colorWhite = '#fff';
const colorOffBlack = '#111';
const colorBorder = '#222';
const colorBlackLight = '#333';
const colorGray = '#666';
const colorPrimary = '#FFE900';
const colorError = '#FF1700';
export const darkTheme = {
appBackgroundColor: colorBlack,
appBorderRadius: '2px',
appTextColor: colorWhite,
appFontFamily: "system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif",
assetModalBorderColor: colorBorder,
assetModalInfoTextColor: colorGray,
assetModalInfoTitleColor: colorWhite,
bottomBarBorderColor: colorBorder,
buttonPrimaryBackgroundColor: colorPrimary,
buttonPrimaryBorderColor: colorPrimary,
buttonPrimaryColor: colorBlack,
buttonSecondaryBackgroundColor: 'transparent',
buttonSecondaryBorderColor: colorGray,
buttonSecondaryColor: colorGray,
draggableMediaItemAmountBackgroundColor: colorPrimary,
draggableMediaItemAmountColor: colorBlack,
draggableMediaItemBackgroundColor: colorBlack,
draggableMediaItemBorderColor: colorPrimary,
errorNotifcationTextColor: colorWhite,
errorNotificationBackgroundColor: colorError,
errorNotificationCloseColor: colorWhite,
filterListActiveColor: colorWhite,
filterListInactiveColor: colorGray,
inputBackgroundColor: colorBlackLight,
inputIconColor: colorGray,
inputLabelColor: colorWhite,
inputTextColor: colorWhite,
loaderColor: colorWhite,
mediaGridSelectedBorderColor: colorPrimary,
mediaItemBackgroundColor: colorBlackLight,
mediaItemIconColor: colorGray,
mediaItemTextColor: colorWhite,
mediaLibraryBackgroundColor: colorOffBlack,
mediaListBorderColor: colorBorder,
mediaListSelectedBorderColor: colorPrimary,
modalBackgroundColor: colorOffBlack,
modalBoxShadowColor: colorBlack,
modalOverlayBackgroundColor: 'rgba(0, 0, 0, 0.5)',
sidebarBackgroundColor: colorBlack,
topBarBorderColor: colorBorder,
topBarButtonActiveColor: colorWhite,
topBarButtonInactiveColor: colorGray,
uploadDropAreaBackgroundColor: 'rgba(0, 0, 0, 0.8)',
uploadDropAreaIconColor: colorWhite,
};