Skip to content

Commit

Permalink
colors
Browse files Browse the repository at this point in the history
  • Loading branch information
ericmillsio committed Sep 28, 2023
1 parent 9dcb9bd commit ae33d1a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<style type="text/css" media="screen">
body {
background-color: black;
background-color: #6aa284;
}
header, main {
font-family: 'Inconsolata', monospace;
Expand All @@ -24,17 +24,17 @@
padding: 0 20px;
}
header a, main a {
color: #bed5ff;
color: #d8f7e7;
}
h1 {
margin: 30px 0;
font-size: 4em;
line-height: 1;
letter-spacing: -1px;
color: rgb(164, 164, 164);
color: #333333;
}
h2 {
color: rgb(164, 164, 164);
color: #333333;
}
</style>

Expand Down Expand Up @@ -143,10 +143,10 @@ <h3>Major Projects</h3>
renderer = new THREE.WebGLRenderer();
renderer.setSize( window.innerWidth, window.innerHeight );

effect = new AsciiEffect( renderer, ' .:-+*=%@#', { invert: true } );
effect = new AsciiEffect( renderer, ' .:-+*=%#', { invert: true } );
effect.setSize( window.innerWidth, window.innerHeight );
effect.domElement.style.color = '#444';
effect.domElement.style.backgroundColor = 'black';
effect.domElement.style.color = '#355041';
effect.domElement.style.backgroundColor = '#6aa284';

// Special case: append effect.domElement, instead of renderer.domElement.
// AsciiEffect creates a custom domElement (a div container) where the ASCII elements are placed.
Expand Down

0 comments on commit ae33d1a

Please sign in to comment.