init
Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled

This commit is contained in:
2025-09-02 14:49:16 +08:00
commit 38ba663466
2885 changed files with 391107 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
/**
* The application's default properties related to the CSS box model such as
* margins, borders, padding.
*/
export const BoxModel = {
/**
* The application's default margin when non-zero margin is necessary.
*/
margin: 10,
/**
* The application's default padding when non-zero padding is necessary.
*/
padding: 10
};

View File

@@ -0,0 +1,34 @@
/**
* IMPORTANT: this file is deprecated. All of these colors should be moved to
* the theme instead.
*/
/**
* The application's definition of the default color black.
*/
const BLACK = '#111111';
/**
* The application's color palette.
*/
export const ColorPalette = {
/**
* The application's background color.
*/
appBackground: BLACK,
/**
* The application's definition of the default color black. Generally,
* expected to be kept in sync with the application's background color for
* the sake of consistency.
*/
black: BLACK,
blue: '#17A0DB',
blueHighlight: '#1081b2',
darkGrey: '#555555',
green: '#40b183',
lightGrey: '#AAAAAA',
red: '#D00000',
transparent: 'rgba(0, 0, 0, 0)',
white: '#FFFFFF'
};