mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
* chore: rebrand in progress * chore: update docs to use heroui * chore: components renbranded * chore: figma moved to the docs files * fix: posthog config * fix(docs): extra classname in form example (#4465) * chore: clean git * chore: make heroui private * chore: new logo * chore: node env var renamed * chore: public robots txt deleted * chore: wrangler installed * chore: wrangler renamed * chore: cloudlfare workers removed * chore: force vercel deploy * refactor: first migration and provider * refactor: rename nextui plugin * refactor: rename github site * refactor: rename CONTRIBUTING * refactor: rename package name * refactor: nextjs image hostname * refactor: mdx repo nextui-org rename frontio-ai * refactor: nextui.org rename heroui.com * refactor: add heroui to missing places * fix: heroui plugin name * fix: update docs * docs: nextui to heroui add npmrc pnpm migratation * chore: rename all packages with new org name * chore: replace frontio-ai by frontioai * chore: revert previous changes * chore: small adjustment * chore: doc updated * feat: blog * chore: avatar updated * fix: url * chore: add new ogimage * fix: ogimage command * fix: heroui name and storybook welcome page * fix: og image url * feat: favicon and icon changed --------- Co-authored-by: աӄա <wingkwong.code@gmail.com> Co-authored-by: winches <329487092@qq.com>
154 lines
3.5 KiB
TypeScript
154 lines
3.5 KiB
TypeScript
import {PrismTheme} from "prism-react-renderer";
|
|
|
|
const codeTheme: PrismTheme = {
|
|
plain: {
|
|
backgroundColor: "hsl(var(--heroui-code-background))",
|
|
color: "#F4F4F4",
|
|
fontWeight: "400",
|
|
fontSize: "14px",
|
|
fontStyle: "normal",
|
|
textRendering: "geometricPrecision",
|
|
},
|
|
styles: [
|
|
{
|
|
types: ["comment", "prolog", "doctype", "cdata"],
|
|
style: {
|
|
color: "rgb(var(--code-comment))",
|
|
},
|
|
},
|
|
{
|
|
types: ["symbol", "text"],
|
|
style: {
|
|
color: "rgb(var(--code-foreground))",
|
|
},
|
|
},
|
|
{
|
|
types: ["punctuation"],
|
|
style: {
|
|
color: "rgb(var(--code-punctuation))",
|
|
},
|
|
},
|
|
{
|
|
types: ["function"],
|
|
style: {
|
|
color: "rgb(var(--code-function))",
|
|
},
|
|
},
|
|
{
|
|
types: ["namespace"],
|
|
style: {
|
|
opacity: 1,
|
|
},
|
|
},
|
|
{
|
|
types: ["tag", "operator", "number"],
|
|
style: {
|
|
color: "rgb(var(--code-number))",
|
|
},
|
|
},
|
|
{
|
|
types: ["property", "function"],
|
|
style: {
|
|
color: "rgb(var(--code-function))",
|
|
},
|
|
},
|
|
{
|
|
types: ["tag-id", "selector", "atrule-id"],
|
|
style: {
|
|
color: "rgb(var(--code-tag))",
|
|
},
|
|
},
|
|
{
|
|
types: ["attr-name"],
|
|
style: {
|
|
color: "rgb(var(--code-attr-name))",
|
|
},
|
|
},
|
|
{
|
|
types: [
|
|
"boolean",
|
|
"string",
|
|
"entity",
|
|
"url",
|
|
"attr-value",
|
|
"control",
|
|
"directive",
|
|
"unit",
|
|
"statement",
|
|
"regex",
|
|
"at-rule",
|
|
"placeholder",
|
|
"variable",
|
|
],
|
|
style: {
|
|
color: "rgb(var(--code-string))",
|
|
},
|
|
},
|
|
{
|
|
types: ["deleted"],
|
|
style: {
|
|
textDecorationLine: "line-through",
|
|
},
|
|
},
|
|
{
|
|
types: ["language-javascript", "script"],
|
|
style: {
|
|
color: "rgb(var(--code-function))",
|
|
},
|
|
},
|
|
{
|
|
types: ["inserted"],
|
|
style: {
|
|
textDecorationLine: "underline",
|
|
},
|
|
},
|
|
{
|
|
types: ["italic"],
|
|
style: {
|
|
fontStyle: "italic",
|
|
},
|
|
},
|
|
{
|
|
types: ["important", "bold"],
|
|
style: {
|
|
fontWeight: "bold",
|
|
},
|
|
},
|
|
{
|
|
types: ["important", "primitive", "keyword"],
|
|
style: {
|
|
color: "rgb(var(--code-keyword))",
|
|
},
|
|
},
|
|
],
|
|
};
|
|
|
|
export const getCodeThemeColors = () => {
|
|
const stringColor = codeTheme.styles.find((style) => style.types.includes("string"));
|
|
const punctuationColor = codeTheme.styles.find((style) => style.types.includes("punctuation"));
|
|
const numberColor = codeTheme.styles.find((style) => style.types.includes("number"));
|
|
const textColor = codeTheme.styles.find((style) => style.types.includes("text"));
|
|
const selectorColor = codeTheme.styles.find((style) => style.types.includes("selector"));
|
|
const commentColor = codeTheme.styles.find((style) => style.types.includes("comment"));
|
|
const classnameColor = codeTheme.styles.find((style) => style.types.includes("tag"));
|
|
const attrColor = codeTheme.styles.find((style) => style.types.includes("attr-name"));
|
|
const functionColor = codeTheme.styles.find((style) => style.types.includes("function"));
|
|
const primitiveColor = codeTheme.styles.find((style) => style.types.includes("primitive"));
|
|
|
|
return {
|
|
...codeTheme.plain,
|
|
stringColor,
|
|
punctuationColor,
|
|
numberColor,
|
|
textColor,
|
|
selectorColor,
|
|
commentColor,
|
|
classnameColor,
|
|
attrColor,
|
|
functionColor,
|
|
primitiveColor,
|
|
};
|
|
};
|
|
|
|
export default codeTheme;
|