Skip to content

Commit 54134a2

Browse files
committed
add '#' to white and cursorColor
1 parent 5e859d1 commit 54134a2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

index.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
const backgroundColor = '#282a36';
44
const foregroundColor = '#f8f8f2';
55
const borderColor = '#44475a';
6-
const cursorColor = 'f8f8f2';
6+
const cursorColor = '#f8f8f2';
77
const colors = {
88
black: '#000000',
99
red: '#ff5555',
@@ -12,18 +12,18 @@ const colors = {
1212
blue: '#bd93f9',
1313
magenta: '#ff79c6',
1414
cyan: '#8be9fd',
15-
white: 'bfbfbf',
15+
white: '#bfbfbf',
1616
lightBlack: '#4d4d4d',
1717
lightRed: '#ff6e67',
1818
lightGreen: '#5af78e',
1919
lightYellow: '#f4f99d',
2020
lightBlue: '#caa9fa',
2121
lightMagenta: '#ff92d0',
2222
lightCyan: '#9aedfe',
23-
lightWhite: '#e6e6e6'
23+
lightWhite: '#e6e6e6',
2424
};
2525

26-
exports.decorateConfig = config => {
26+
exports.decorateConfig = (config) => {
2727
return Object.assign({}, config, {
2828
backgroundColor,
2929
foregroundColor,
@@ -42,6 +42,6 @@ exports.decorateConfig = config => {
4242
.tab_active:before {
4343
border-color: ${borderColor};
4444
}
45-
`
45+
`,
4646
});
4747
};

0 commit comments

Comments
 (0)