-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #205 from OI-wiki/varitheme
- Loading branch information
Showing
7 changed files
with
214 additions
and
110 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,26 @@ | ||
const colors: Array<{ desc: string, color: string }> = [{ | ||
color: 'auto', desc: 'auto', | ||
}, { | ||
color: '#FFF', desc: 'classical white', | ||
}, { | ||
color: '#A00', desc: 'Lily Red', | ||
}, { | ||
color: '#E91E63', desc: 'Margatroid Magenta', | ||
}, { | ||
color: '#222', desc: 'Breathy Darkness', | ||
}, { | ||
color: '#ef5350', desc: 'Red', | ||
}, { | ||
color: '#e91e63', desc: 'Pink', | ||
}, { | ||
color: '#ab47bc', desc: 'Purple', | ||
}, { | ||
color: '#7e57c2', desc: 'Deep Purple', | ||
}, { | ||
color: '#3f51b5', desc: 'Indigo', | ||
}, { | ||
color: '#2196f3', desc: 'Blue', | ||
}, { | ||
color: '#03a9f4', desc: 'Light Blue', | ||
}, { | ||
color: '#00bcd4', desc: 'Cyan', | ||
}, { | ||
color: '#009688', desc: 'Teal', | ||
}, { | ||
color: '#4caf50', desc: 'Green', | ||
}, { | ||
color: '#7cb342', desc: 'Light Green', | ||
}, { | ||
color: '#c0ca33', desc: 'Lime', | ||
}, { | ||
color: '#f9a825', desc: 'Yellow', | ||
}, { | ||
color: '#ffa000', desc: 'Amber', | ||
}, { | ||
color: '#fb8c00', desc: 'Orange', | ||
}, { | ||
color: '#ff7043', desc: 'Deep Orange', | ||
}, { | ||
color: '#795548', desc: 'Brown', | ||
}, { | ||
color: '#757575', desc: 'Grey', | ||
}, { | ||
color: '#546e7a', desc: 'Blue Grey', | ||
}, | ||
const colors: Array<{ desc: string, color: string }> = [ | ||
{ color: 'auto', desc: 'auto' }, | ||
{ color: '#FFF', desc: 'classical white' }, | ||
{ color: '#A00', desc: 'Lily Red' }, | ||
{ color: '#e91e63', desc: 'Margatroid Magenta' }, | ||
{ color: '#222', desc: 'Breathy Darkness' }, | ||
{ color: '#ef5350', desc: 'Red' }, | ||
{ color: '#ab47bc', desc: 'Purple' }, | ||
{ color: '#7e57c2', desc: 'Deep Purple' }, | ||
{ color: '#3f51b5', desc: 'Indigo' }, | ||
{ color: '#2196f3', desc: 'Blue' }, | ||
{ color: '#03a9f4', desc: 'Light Blue' }, | ||
{ color: '#00bcd4', desc: 'Cyan' }, | ||
{ color: '#009688', desc: 'Teal' }, | ||
{ color: '#4caf50', desc: 'Green' }, | ||
{ color: '#7cb342', desc: 'Light Green' }, | ||
{ color: '#c0ca33', desc: 'Lime' }, | ||
{ color: '#f9a825', desc: 'Yellow' }, | ||
{ color: '#ffa000', desc: 'Amber' }, | ||
{ color: '#fb8c00', desc: 'Orange' }, | ||
{ color: '#ff7043', desc: 'Deep Orange' }, | ||
{ color: '#795548', desc: 'Brown' }, | ||
{ color: '#757575', desc: 'Grey' }, | ||
{ color: '#546e7a', desc: 'Blue Grey' }, | ||
] | ||
export default colors |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.