diff --git a/snake/index.html b/snake/index.html index 493d464..7196bf0 100644 --- a/snake/index.html +++ b/snake/index.html @@ -13,12 +13,12 @@ @import url("https://fonts.googleapis.com/css?family=VT323"); ::selection { - color: rgb(68, 233, 27); + color: rgb(170,28,255); background: transparent; } ::-moz-selection { - color: rgb(68, 233, 27); + color: rgb(170,28,255); background: transparent; } @@ -29,7 +29,7 @@ } body { - background-color: #000000; + background-color: #121212; } .wrap { @@ -46,7 +46,7 @@ display: none; border-style: solid; border-width: 10px; - border-color: rgb(68, 233, 27); + border-color: rgb(170,28,255); } canvas:focus { @@ -58,14 +58,14 @@ display: inline-block; width: 100px; font-size: 32px; - color: rgb(68, 233, 27); + color: rgb(170,28,255); } .score { display: inline-block; width: 240px; font-size: 20px; - color: rgb(68, 233, 27); + color: rgb(170,28,255); text-align: right; } @@ -183,7 +183,7 @@ #setting input:checked+label { background-color: #FFF; - color: #000; + color: #121212; }