at main 456 B view raw
1/** 2 * Code Styles 3 * 4 * Uses the global typography system with fluid type scaling. 5 * All code uses DM Mono font (monospace). 6 * Supports inline and block variants. 7 */ 8export const codeStyles = { 9 base: 'font-normal font-dm-mono', 10 variants: { 11 inline: 'code-inline px-1.5 py-0.5 rounded bg-bones-black-5 dark:bg-bones-white-10', 12 block: 'code-block block p-4 rounded-lg bg-bones-black-5 dark:bg-bones-white-10 overflow-x-auto', 13 }, 14} as const;