-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy paththeme.js
104 lines (98 loc) · 2.94 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
'use strict'
const Theme = {
zIndexes: {
menu: 10,
},
focusOutline: 'solid .3rem #DCE8F2',
// ui colors
colors: {
success: '#005621',
lightSuccess: '#E6F3EB',
white: '#FFF',
black: '#000',
borderGray: '#EBEBEB',
title: '#1A1A1A',
textPrimary: '#000000',
textBrown: '#403105',
encivYellow: '#FFC315',
encivGray: '#5D5D5C',
inputBorder: '#EBEBEB',
inputErrorBorder: '#BF1300',
inputErrorContainer: '#F9E7E5',
inputWordCount: '#5D5D5C',
inputErrorWordCount: '#BF1300',
cardOutline: '#FBFBFB',
disableSecBorderGray: '#5D5D5C',
disableTextBlack: '#343433',
primaryButtonBlue: '#06335C',
inputFieldPlaceholder: '#1A1A1A4D',
passwordInputPlaceholder: '#0A0A0AB3',
mouseDownPrimeBlue: '#01172C',
hoverGray: '#B3B3B3',
darkModeGray: '#343433',
lightGray: '#F7F7F7',
secondaryDivider: '#D9D9D9',
statusBadgeProgressBorder: '#EDBF01',
statusBadgeProgressBackground: '#FFFAE8',
statusBadgeProgressTextColor: '#342A00',
statusBadgeCompletedBorder: '#005621',
statusBadgeCompletedBackground: '#E6F3EB',
statusBadgeCompletedTextColor: '#005621',
statusBadgeInactiveBorder: '#EBEBEB',
statusBadgeInactiveBackground: '#FFFFFF',
statusBadgeResponseColor: '#5D5D5C',
statusBadgeErrorBorder: '#BF1300',
statusBadgeErrorBackground: '#F9E7E5',
statusBadgeErrorTextColor: '#BF1300',
rankInvalidBorder: ' #590900',
rankInvalidText: '#BF1300',
statusBoxErrorBackground: '#F9E7E5',
statusBoxErrorBorder: '#BF1300',
statusBoxDoneBackground: '#E6F3EB',
statusBoxDoneBorder: '#005621',
statusBoxWarnBackground: '#FFF3D0',
statusBoxWarnBorder: '#EBDCB3',
statusBoxNoticeBackground: '#DCE8F2',
statusBoxNoticeBorder: '#ACC2E2',
roundTrackerBackground: '#FDFDFD',
inactiveGray: '#D9D9D9',
stepContainerActive: 'rgba(6, 51, 92, 0.10)',
svgArrow: 'rgb(206, 206, 206)',
transparent: 'transparent',
tabSelected: '#DCE8F2',
pointDefault: '#FFFFFF',
},
font: {
fontFamily: 'Inter',
fontStyle: 'normal',
darkModeFont: '#FFFFFF',
},
border: {
width: {
thin: '0.0625rem',
thick: '0.125rem',
},
},
condensedWidthBreakPoint: '40rem',
maxPanelWidth: '78rem',
boxShadow: '0.1875rem 0.1875rem 0.4375rem 0.5rem rgba(217, 217, 217, 0.40)',
boxShadowRightBottom: '0.1875rem 0.1875rem 0.3125rem rgba(0, 0, 0, 0.05)',
enCivUnderline: {
textDecorationLine: 'underline',
textUnderlineOffset: '0.26rem',
},
}
export default Theme
// NOTES:
/*
If you try to reference the theme object within itself, storybook may complain about circular references. Here is an example of a
proper format for doing so:
Theme = {
...theme content
}
Theme.styles = {
primary: { color: Theme.colors.primary },
};
Note that Theme.styles if outside of the Theme object. This works since we are exporting as default: the entire object and any changes
to it are exported as well.
*/