// __SDEFILE__ - This file is a dependency for the stand-alone environment import colors from 'tailwindcss/colors' /* * See the light theme for an example with inline comments */ export const spectrum = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11].map(() => 'blue-200') export const rating = ['blue-300', 'blue-400', 'blue-500', 'blue-600', 'blue-700'] export const graph = [ 'emerald-500', 'cyan-400', 'blue-600', 'indigo-400', 'sky-600', 'blue-400', 'teal-600', 'sky-400', 'emerald-500', ] export const theme = { fontFamily: "ui-rounded, 'Hiragino Maru Gothic ProN', Quicksand, Comfortaa, Manjari, 'Arial Rounded MT Bold', Calibri, source-sans-pro, sans-serif;", 'base-100': colors.blue['50'], 'base-200': colors.blue['100'], 'base-300': colors.blue['300'], 'base-content': colors.blue['900'], primary: colors.indigo['600'], 'primary-focus': colors.indigo['500'], 'primary-content': colors.indigo['50'], secondary: colors.sky['600'], 'secondary-focus': colors.sky['500'], 'secondary-content': colors.blue['50'], accent: colors.blue['600'], 'accent-focus': colors.blue['500'], 'accent-content': colors.blue['50'], neutral: colors.blue['900'], 'neutral-focus': colors.blue['800'], 'neutral-content': colors.blue['50'], info: colors.sky['600'], '--btn-info-content': colors.sky['50'], success: colors.teal['600'], '--btn-success-content': colors.teal['50'], warning: colors.yellow['600'], '--btn-warning-content': colors.yellow['50'], error: colors.orange['600'], '--btn-error-content': colors.orange[50], '--code-background-color': colors.neutral['800'], '--code-background-highlight-color': '#313131', '--code-border-color': colors.neutral['900'], '--code-color': colors.neutral['100'], '--code-font-family': `"SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace`, '--code-border-radius': '0.5rem', '--code-border-style': 'solid', '--code-border-width': 1, '--code-outer-padding': '0 0.5rem', '--code-inner-padding': '1rem', '--code-color-keyword': colors.yellow['500'], '--code-font-weight-keyword': 'bold', '--code-color-entity': colors.violet['400'], '--code-font-weight-entity': 'bold', '--code-color-constant': colors.lime['400'], '--code-color-string': colors.sky['400'], '--code-font-style-string': 'italic', '--code-color-variable': colors.indigo['400'], '--code-color-comment': colors.neutral['400'], '--code-color-tag': colors.green['400'], '--code-color-property': colors.yellow['200'], '--code-font-weight-property': 'bold', '--rounded-box': '0.5rem', '--rounded-btn': '0.5rem', '--rounded-badge': '1.9rem', '--animation-btn': '0.25s', '--animation-input': '.4s', '--padding-card': '2rem', '--btn-text-case': 'uppercase', '--navbar-padding': '.5rem', '--border-btn': '1px', '--focus-ring': '2px', '--focus-ring-offset': '2px', '--pattern-bg': colors.neutral['50'], '--pattern-fabric': colors.neutral['700'], '--pattern-lining': colors.emerald['500'], '--pattern-interfacing': colors.neutral['400'], '--pattern-canvas': colors.amber['600'], '--pattern-various': colors.red['500'], '--pattern-mark': colors.blue['500'], '--pattern-contrast': colors.pink['500'], '--pattern-note': colors.violet['500'], '--pattern-text-xs': '0.2rem', '--pattern-text-sm': '0.3rem', '--pattern-text': '0.4rem', '--pattern-text-lg': '0.6rem', '--pattern-text-xl': '0.8rem', '--pattern-text-2xl': '1.5rem', '--pattern-text-3xl': '2rem', '--pattern-text-4xl': '3rem', '--pattern-scale': '1', '--pattern-stroke-xs': '0.2px', '--pattern-stroke-sm': '0.4px', '--pattern-stroke': '0.7px', '--pattern-stroke-lg': '1.3px', '--pattern-stroke-xl': '2px', '--pattern-stroke-2xl': '4px', '--pattern-stroke-3xl': '6px', '--pattern-stroke-4xl': '8px', '--pattern-stroke-5xl': '12px', '--pattern-stroke-6xl': '16px', '--pattern-stroke-7xl': '20px', '--pattern-sample-1': colors.red['500'], '--pattern-sample-2': colors.orange['500'], '--pattern-sample-3': colors.yellow['500'], '--pattern-sample-4': colors.lime['500'], '--pattern-sample-5': colors.emerald['500'], '--pattern-sample-6': colors.cyan['500'], '--pattern-sample-7': colors.blue['500'], '--pattern-sample-8': colors.violet['500'], '--pattern-sample-9': colors.fuchsia['500'], '--pattern-sample-10': colors.rose['500'], }