forked from terrestris/shogun-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.js
28 lines (24 loc) · 983 Bytes
/
theme.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// https://github.com/ant-design/ant-design/blob/master/components/style/themes/default.less
module.exports = {
/**
* Custom variables
*/
'@drawer-width': '600px',
/**
* antd overwrites
*/
'@primary-color': '#137CBD',
'@info-color': '#137CBD',
'@success-color': '#0F9960', // success state color
'@warning-color': '#D9822B', // warning state color
'@error-color': '#DB3737', // error state color
'@link-color': '#137CBD', // link color
'@font-size-base': '14px', // major text font size
'@heading-color': 'rgba(0, 0, 0, 0.85)', // heading text color
'@text-color': 'rgba(0, 0, 0, 0.65)', // major text color
'@text-color-secondary': 'rgba(0, 0, 0, .45)', // secondary text color
'@disabled-color': 'rgba(0, 0, 0, .25)', // disable state color
'@border-radius-base': '0px', // major border radius
'@border-color-base': '#d9d9d9', // major border color
'@box-shadow-base': '0 2px 8px rgba(0, 0, 0, 0.15)' // major shadow for layers
};