import { TokensContract } from '../types'; export type ColorsContract = TokensContract; export const colorsContract = { white: null, black: null, gray300: null, gray400: null, gray500: null, gray600: null, gray700: null, red200: null, red300: null, red400: null, red500: null, red600: null, // Base 'base-text-strong': null, 'base-text-weak': null, 'base-text-subtle': null, 'base-up': null, base: null, 'base-down': null, // Neutral 'neutral-text-strong': null, neutral: null, // Primary 'primary-text-strong': null, 'primary-up': null, primary: null, 'primary-down': null, // Secondary 'secondary-text-strong': null, secondary: null, 'secondary-down': null, // Error 'error-text-strong': null, 'error-up': null, error: null, 'error-down': null, // Overlay overlay: null, // Placeholder placeholder: null, };