Skip to content

Commit

Permalink
fix(logo): . and , kernings
Browse files Browse the repository at this point in the history
  • Loading branch information
skuqre committed May 1, 2024
1 parent e28b9d6 commit 099269b
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions src/scripts/logo.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,12 @@ const kerning = {
"w": {
"a": -32,
"l": -32,
"o": -8
"o": -8,
".": -32,
",": -32
},
"g": {
a: -8
"a": -8
},
"a": {
"v": -32,
Expand All @@ -49,7 +51,9 @@ const kerning = {
"q": -8
},
"t": {
"a": -32
"a": -32,
".": -32,
",": -32
},
"v": {
"a": -40,
Expand All @@ -58,7 +62,9 @@ const kerning = {
"p": -16,
"g": -8,
"b": -8,
"q": -8
"q": -8,
".": -32,
",": -32
},
"y": {
"a": -40,
Expand All @@ -68,7 +74,9 @@ const kerning = {
"o": -16,
"b": -16,
"c": -16,
"d": -16
"d": -16,
".": -48,
",": -48
},
"o": {
"y": -16,
Expand Down Expand Up @@ -119,14 +127,18 @@ const kerning = {
"t": -32,
"y": -48,
"w": -32,

"f": -32,
"p": -32
},
",": {
"v": -32,
"t": -32,
"y": -48,
"w": -32,

"f": -32,
"p": -32
}
}

Expand Down

0 comments on commit 099269b

Please sign in to comment.