This commit is contained in:
15
react/features/base/styles/components/styles/BoxModel.ts
Normal file
15
react/features/base/styles/components/styles/BoxModel.ts
Normal 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
|
||||
};
|
||||
34
react/features/base/styles/components/styles/ColorPalette.ts
Normal file
34
react/features/base/styles/components/styles/ColorPalette.ts
Normal 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'
|
||||
};
|
||||
Reference in New Issue
Block a user