mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-08-03 20:55:42 +00:00
feat: update branding, genesis hash, and fix UI issues
- Update PEZKUWI_GENESIS to correct hash (0x1fc56b6a5fcd50358707f69b2b0bb0c8ab1fea2bcfc5eba7279efbcafef642af) - Change highlight color from pink/orange to Kurdistan green (#86e62a) - Add critical CSS in index.html to fix initial theme load issue - Fix metadata badge showing incorrectly on every page load - Fix block time text rendering vertically in explorer - Update SVG logos with correct branding colors
This commit is contained in:
@@ -88,7 +88,7 @@ function tattooSpiro (ctx: CanvasRenderingContext2D, bits: boolean[]): void {
|
||||
ctx.translate(0, -radius);
|
||||
ctx.beginPath();
|
||||
ctx.arc(0, 0, (bits[i] ? dot : dot / 2), 0, 2 * Math.PI);
|
||||
ctx.fillStyle = bits[i] ? 'black' : '#e6007a';
|
||||
ctx.fillStyle = bits[i] ? 'black' : '#86e62a';
|
||||
ctx.fill();
|
||||
ctx.restore();
|
||||
}
|
||||
@@ -105,7 +105,7 @@ function tattooPink (ctx: CanvasRenderingContext2D, bits: boolean[]): void {
|
||||
ring(ctx, 0.5 - (31 / 500) * (i + 0.5), rows[i], (ctx, on) => {
|
||||
ctx.beginPath();
|
||||
ctx.arc(0, 0, (on ? 8 : 4) / 500, 0, 2 * Math.PI);
|
||||
ctx.fillStyle = on ? 'black' : '#e6007a';
|
||||
ctx.fillStyle = on ? 'black' : '#86e62a';
|
||||
ctx.fill();
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user