인용 블록 색상과 라이브 설정 패널 정리
This commit is contained in:
@@ -1,6 +1,29 @@
|
||||
/** @type {string[]} */
|
||||
export const CALLOUT_BACKGROUND_OPTIONS = ['gray', 'blue', 'green', 'yellow', 'red', 'purple', 'pink']
|
||||
|
||||
/** @type {string[]} */
|
||||
export const QUOTE_BACKGROUND_OPTIONS = ['gray', 'blue', 'green', 'yellow', 'red', 'purple']
|
||||
|
||||
/** @type {Record<string, string>} */
|
||||
export const QUOTE_BACKGROUND_LABELS = {
|
||||
gray: '회색',
|
||||
blue: '파랑',
|
||||
green: '초록',
|
||||
yellow: '노랑',
|
||||
red: '빨강',
|
||||
purple: '보라'
|
||||
}
|
||||
|
||||
/** @type {Record<string, string>} */
|
||||
export const QUOTE_BACKGROUND_SWATCHES = {
|
||||
gray: 'color-mix(in srgb, #050505 10%, #ffffff)',
|
||||
blue: 'color-mix(in srgb, #0055ff 10%, #ffffff)',
|
||||
green: 'color-mix(in srgb, #16ae68 10%, #ffffff)',
|
||||
yellow: 'color-mix(in srgb, #ffff00 10%, #ffffff)',
|
||||
red: 'color-mix(in srgb, #ff0000 10%, #ffffff)',
|
||||
purple: 'color-mix(in srgb, #8800ff 10%, #ffffff)'
|
||||
}
|
||||
|
||||
/** @type {string[]} */
|
||||
export const CALLOUT_EMOJI_OPTIONS = ['💡', '⚠️', '❗', '✅', '📌', '🔥', '💬']
|
||||
|
||||
|
||||
Reference in New Issue
Block a user