/** * Editor Design Tokens * Consistent design system for the "Figma for 3D" editor UI */ /** * Color palette for the editor */ export declare const EDITOR_COLORS: { readonly panel: "rgba(0, 0, 0, 0.9)"; readonly panelSecondary: "rgba(0, 0, 0, 0.85)"; readonly field: "rgba(255, 255, 255, 0.05)"; readonly fieldHover: "rgba(255, 255, 255, 0.08)"; readonly fieldActive: "rgba(255, 255, 255, 0.12)"; readonly activeBg: "rgba(24, 144, 255, 0.1)"; readonly primaryBg: "rgba(24, 144, 255, 0.15)"; readonly border: "rgba(255, 255, 255, 0.1)"; readonly borderHover: "rgba(255, 255, 255, 0.2)"; readonly borderActive: "#1890ff"; readonly divider: "#444444"; readonly textPrimary: "#ffffff"; readonly textSecondary: "#cccccc"; readonly textTertiary: "#999999"; readonly textMuted: "#666666"; readonly primary: "#1890ff"; readonly success: "#52c41a"; readonly warning: "#faad14"; readonly error: "#ff4d4f"; readonly headerBg: "rgba(255, 255, 255, 0.02)"; }; /** * Spacing system for consistent gaps and padding */ export declare const EDITOR_SPACING: { readonly xs: 4; readonly sm: 8; readonly md: 12; readonly lg: 16; readonly xl: 24; readonly fieldGap: 4; readonly sectionGap: 12; readonly panelPadding: 16; readonly headerPadding: 8; }; /** * Height system for consistent component sizes */ export declare const EDITOR_HEIGHTS: { readonly rowCompact: 24; readonly rowStandard: 28; readonly rowExpanded: 32; readonly rowModule: 48; readonly input: 28; readonly button: 28; readonly buttonSmall: 24; readonly iconButton: 24; readonly header: 32; }; /** * Typography system */ export declare const EDITOR_TYPOGRAPHY: { readonly fontSizeXs: 10; readonly fontSizeSm: 11; readonly fontSizeMd: 12; readonly fontSizeLg: 14; readonly fontSizeXl: 16; readonly fontWeightNormal: 400; readonly fontWeightMedium: 500; readonly fontWeightBold: 600; readonly lineHeightTight: 1.2; readonly lineHeightNormal: 1.4; readonly lineHeightRelaxed: 1.6; }; /** * Border radius values */ export declare const EDITOR_RADIUS: { readonly sm: 4; readonly md: 6; readonly lg: 8; }; //# sourceMappingURL=tokens.d.ts.map