Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

13 Additional Colors #102

Closed
wants to merge 3 commits into from
Closed
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions geeksay.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,23 @@ const translations = {
"everything": "42",
"lifetime": "runtime",
"sleep": "shutdown",
"black": "#000000",
"silver": "#c0c0c0",
"gray": "#808080",
"grey": "#808080",
"white": "#ffffff",
"maroon": "#800000",
"red": "#ff0000",
"green": "#00ff00",
"purple": "#800080",
"fuchsia": "#ff00ff",
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The translations are meant to be easily understood. Do you think you can read #ff00ff and decode it as fuchsia?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah that's true! I'll take it out.

"green": "#008000",
"lime": "#00ff00",
"olive": "#808000",
"yellow": "#ffff00",
"navy": "#000080",
"blue": "#0000ff",
"teal": "#008080",
"aqua": "#00ffff",
"marry": "merge",
"propose": "commit",
"not found": "404",
Expand Down Expand Up @@ -141,7 +155,7 @@ const quotes = [
"I like to fix shit", // I <3 to debug dump
"eat sleep code repeat", // eat shutdown code repeat
"roses are red, violets are blue", // roses are ##ff0000, violets are ##0000ff
"The greatest trick the devil ever pulled was convincing the world he didn't exist", // The greatest trick the devil ever pulled was convincing the 0.0.0.0/0 he didn't exist
"The greatest trick the devil ever pulled was convincing the world he didn't exist" // The greatest trick the devil ever pulled was convincing the 0.0.0.0/0 he didn't exist
]

function isNumeric(num){
Expand Down