Skip to content

Commit

Permalink
tweak color to match design (#385)
Browse files Browse the repository at this point in the history
  • Loading branch information
kosamari authored and jakearchibald committed May 2, 2019
1 parent 621f0f7 commit ef2b049
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/nebula-safe-dark.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* limitations under the License.
*/

const color = [58, 10, 78];
const color = [14, 16, 62];
module.exports.color = color;
module.exports.hex =
"#" +
Expand Down
6 changes: 3 additions & 3 deletions src/services/preact-canvas/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ const stateServicePromise: Promise<
return remoteServices.stateService;
})();

const nebulaDangerDark: Color = [53, 0, 0];
const nebulaDangerLight: Color = [117, 32, 61];
const nebulaDangerDark: Color = [40, 0, 0];
const nebulaDangerLight: Color = [131, 23, 71];
// Looking for nebulaSafeDark? It's defined in lib/nebula-safe-dark.js
const nebulaSafeLight: Color = [43, 41, 111];
const nebulaSafeLight: Color = [54, 49, 176];
const nebulaSettingDark: Color = [0, 0, 0];
const nebulaSettingLight: Color = [41, 41, 41];

Expand Down

0 comments on commit ef2b049

Please sign in to comment.