87 lines
2.2 KiB
TypeScript
87 lines
2.2 KiB
TypeScript
|
import theme from 'App/ThemeStyles';
|
||
|
|
||
|
const colors = {
|
||
|
almostBlack: '#181A1B',
|
||
|
lightBlack: '#2F3336',
|
||
|
almostWhite: '#E6E6E6',
|
||
|
white: '#FFF',
|
||
|
white10: 'rgba(255, 255, 255, 0.1)',
|
||
|
black: '#000',
|
||
|
black10: 'rgba(0, 0, 0, 0.1)',
|
||
|
primary: '#1AB6FF',
|
||
|
greyLight: '#F4F7FA',
|
||
|
grey: '#E8EBED',
|
||
|
greyMid: '#C5CCD3',
|
||
|
greyDark: '#DAE1E9',
|
||
|
};
|
||
|
|
||
|
export const base = {
|
||
|
...colors,
|
||
|
fontFamily: "'Droid Sans', sans-serif",
|
||
|
fontFamilyMono: "'SFMono-Regular',Consolas,'Liberation Mono', Menlo, Courier,monospace",
|
||
|
fontWeight: 400,
|
||
|
zIndex: 10000,
|
||
|
link: colors.primary,
|
||
|
placeholder: '#B1BECC',
|
||
|
textSecondary: '#4E5C6E',
|
||
|
textLight: colors.white,
|
||
|
textHighlight: '#b3e7ff',
|
||
|
selected: colors.primary,
|
||
|
codeComment: '#6a737d',
|
||
|
codePunctuation: '#5e6687',
|
||
|
codeNumber: '#d73a49',
|
||
|
codeProperty: '#c08b30',
|
||
|
codeTag: '#3d8fd1',
|
||
|
codeString: '#032f62',
|
||
|
codeSelector: '#6679cc',
|
||
|
codeAttr: '#c76b29',
|
||
|
codeEntity: '#22a2c9',
|
||
|
codeKeyword: '#d73a49',
|
||
|
codeFunction: '#6f42c1',
|
||
|
codeStatement: '#22a2c9',
|
||
|
codePlaceholder: '#3d8fd1',
|
||
|
codeInserted: '#202746',
|
||
|
codeImportant: '#c94922',
|
||
|
|
||
|
blockToolbarBackground: colors.white,
|
||
|
blockToolbarTrigger: colors.greyMid,
|
||
|
blockToolbarTriggerIcon: colors.white,
|
||
|
blockToolbarItem: colors.almostBlack,
|
||
|
blockToolbarText: colors.almostBlack,
|
||
|
blockToolbarHoverBackground: colors.greyLight,
|
||
|
blockToolbarDivider: colors.greyMid,
|
||
|
|
||
|
noticeInfoBackground: '#F5BE31',
|
||
|
noticeInfoText: colors.almostBlack,
|
||
|
noticeTipBackground: '#9E5CF7',
|
||
|
noticeTipText: colors.white,
|
||
|
noticeWarningBackground: '#FF5C80',
|
||
|
noticeWarningText: colors.white,
|
||
|
};
|
||
|
export const dark = {
|
||
|
...base,
|
||
|
background: 'transparent',
|
||
|
text: `rgba(${theme.colors.text.primary})`,
|
||
|
code: `rgba(${theme.colors.text.primary})`,
|
||
|
cursor: `rgba(${theme.colors.text.primary})`,
|
||
|
divider: '#4E5C6E',
|
||
|
placeholder: '#52657A',
|
||
|
|
||
|
toolbarBackground: colors.white,
|
||
|
toolbarInput: colors.black10,
|
||
|
toolbarItem: colors.lightBlack,
|
||
|
|
||
|
tableDivider: colors.lightBlack,
|
||
|
tableSelected: colors.primary,
|
||
|
tableSelectedBackground: '#002333',
|
||
|
|
||
|
quote: colors.greyDark,
|
||
|
codeBackground: colors.black,
|
||
|
codeBorder: colors.lightBlack,
|
||
|
codeString: '#3d8fd1',
|
||
|
horizontalRule: colors.lightBlack,
|
||
|
imageErrorBackground: 'rgba(0, 0, 0, 0.5)',
|
||
|
};
|
||
|
|
||
|
export default dark;
|