- Upgraded @reduxjs/toolkit to version 2.9.0 and added new dependencies including @techniker-me/pcast-api and moment. - Refactored authentication logic and added middleware for improved request handling. - Introduced new UI components such as buttons, loaders, and forms, along with a theme system following SOLID principles. - Updated routing to include protected routes and improved the login form with better error handling. - Removed unused CSS and organized the project structure for better maintainability.
37 lines
1003 B
TypeScript
37 lines
1003 B
TypeScript
/**
|
|
* Copyright 2024 Phenix Real Time Solutions, Inc. Confidential and Proprietary. All Rights Reserved.
|
|
*/
|
|
|
|
export interface IColorSystem {
|
|
readonly white: string;
|
|
readonly whiteWithOpacity: string;
|
|
readonly gray100: string;
|
|
readonly gray200: string;
|
|
readonly gray300: string;
|
|
readonly gray400: string;
|
|
readonly gray500: string;
|
|
readonly gray600: string;
|
|
readonly gray700: string;
|
|
readonly gray800: string;
|
|
readonly gray900: string;
|
|
readonly gray1000: string;
|
|
readonly black: string;
|
|
readonly blue: string;
|
|
readonly indigo: string;
|
|
readonly purple: string;
|
|
readonly pink: string;
|
|
readonly lightBlue: string;
|
|
readonly linkBlue: string;
|
|
readonly red: string;
|
|
readonly lightRed: string;
|
|
readonly orange: string;
|
|
readonly yellow: string;
|
|
readonly green: string;
|
|
readonly teal: string;
|
|
readonly cyan: string;
|
|
readonly headerColor: string;
|
|
readonly transparent: string;
|
|
readonly blackWithOpacity: string;
|
|
readonly halfTransparentBlack: string;
|
|
}
|