رنگ متن

یک نام رنگ مجاز روی متن انتخاب‌شده اعمال کنید. مقدار ذخیره‌شده رشتهٔ رنگ CSS نیست؛ نامی مجاز است و رنگ واقعی را متغیر CSS با نام --nabi-tc-<name> تعیین می‌کند. به این ترتیب، همان سند در هر دو پوستهٔ روشن و تیره خوانا می‌ماند.

بال‌ها
قلم پایهفاصله
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: 'fa' })

const settle = watchSettle(document, { surface: content })
const shared = { nabi, registry, surface: content, settle, locale: 'fa' }
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 حذف شود، پالت پیش‌فرض green، coral، violet، amber و blue است. اگر فهرست را کوچک کنید، رنگ‌های دیگر در فرمان‌ها و هنگام بارگیری سند پذیرفته نمی‌شوند.

استایل‌های CSS

سند فقط نام رنگ را ذخیره می‌کند. رنگ واقعی ویرایشگر و نمای منتشرشده را با متغیرهای CSS تنظیم کنید.

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

کنتراست را همراه رنگ پس‌زمینه بررسی کنید. در پوستهٔ تیره، یک نام رنگ می‌تواند مقدار متفاوتی بگیرد.

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