文字颜色

给选中文字应用颜色名称。保存的值不是 CSS 颜色字符串,而是允许的名称;实际颜色由 --nabi-tc-<name> CSS 变量定义。这样同一份文档在浅色和深色主题中都能保持可读。

翅膀
默认字体高度
HTML正在加载编辑器…
JSONnabi-tree正在加载编辑器…
安装
npm install nabi-note
代码
import {
  createNabiWith, mountSurface, mountToolbar, mountContextToolbar,
  mountHints, watchSettle, textColorWing, highlightWing, mountViewTools,
} from 'nabi-note'

const selected = [
  textColorWing,
  highlightWing,
]
const { nabi, registry } = createNabiWith(selected)

const root = document.querySelector('.nabi')!
const content = document.querySelector('.nabi-content')!

// The locale also sets the direction — Arabic and Urdu run right to left
mountSurface({ nabi, registry, root: content, locale: 'zh' })

const settle = watchSettle(document, { surface: content })
const shared = { nabi, registry, surface: content, settle, locale: 'zh' }
const toolbar = mountToolbar({ ...shared, root: document.querySelector('#toolbar')! })
const context = mountContextToolbar({ ...shared, root: document.querySelector('#context')! })
mountHints({ toolbar, context, root, surface: content })
// The preview and fullscreen buttons — they stand their own box at the end of the row
mountViewTools({ ...shared, root, container: document.querySelector('#toolbar')! })

// on every change — hook up your own code here
// nabi.onChange(() => user_callback(nabi.getHtml()))
ts
const selected = wings().use('tc', {
  values: ['green', 'coral', 'blue'],
}).build()

如果省略 values,默认调色板是 greencoralvioletamberblue。如果缩小列表,其他颜色会在命令执行和文档加载时被拒绝。

CSS 样式

文档只保存颜色名称。编辑器和发布页面中的实际颜色通过 CSS 变量设置。

css
.nabi-content { --nabi-tc-blue: #2563eb; }

请和背景色一起检查对比度。在深色主题中,同一个颜色名称可以使用不同的值。

css
.dark .article-body {
  --nabi-tc-blue: #93c5fd;
  --nabi-tc-green: #86efac;
}