swapped more colors and images 547477d3
Steve · 2023-04-23 11:27 9 file(s) · +8 −8
public/192x192.png +0 −0

Binary file — no preview.

public/512x512.png +0 −0

Binary file — no preview.

public/apple-touch-icon.png +0 −0

Binary file — no preview.

public/favicon.ico +0 −0

Binary file — no preview.

public/icon.svg +3 −3
1 -
<svg width="500" height="500" viewBox="0 0 500 500" fill="none" xmlns="http://www.w3.org/2000/svg">
2 -
<path d="M20.1465 448.094H479L350.926 226.37L311.281 258.273L275.108 232.751L249.573 258.273L215.528 232.751L193.185 258.273L151.291 221.053L20.1465 448.094Z" fill="#88C0D0"/>
3 -
<path d="M249.573 50.9053L151.291 221.053L193.185 258.273L215.528 232.751L249.573 258.273L275.108 232.751L311.281 258.273L350.926 226.37L249.573 50.9053Z" fill="#EDEFF3"/>
1 +
<svg width="459" height="398" viewBox="0 0 459 398" fill="none" xmlns="http://www.w3.org/2000/svg">
2 +
<path d="M0 397.189H458.853L330.78 175.465L291.135 207.368L254.961 181.846L229.427 207.368L195.381 181.846L173.038 207.368L131.145 170.148L0 397.189Z" fill="#74C7EC"/>
3 +
<path d="M229.427 0L131.145 170.148L173.038 207.368L195.381 181.846L229.427 207.368L254.961 181.846L291.135 207.368L330.78 175.465L229.427 0Z" fill="#EDEFF3"/>
4 4
</svg>
public/social-card.png +0 −0

Binary file — no preview.

src/assets/512x512.png +0 −0

Binary file — no preview.

src/components/layout/Header.astro +1 −1
46 46
				>
47 47
					<path
48 48
						d="M6.80859 330H379.955L275.803 149.691L243.564 175.635L214.147 154.88L193.382 175.635L165.695 154.88L147.526 175.635L113.457 145.367L6.80859 330Z"
49 -
						fill="#88C0D0"></path>
49 +
						fill="#74c7ec"></path>
50 50
					<path
51 51
						d="M193.382 7L113.457 145.367L147.526 175.635L165.695 154.88L193.382 175.635L214.147 154.88L243.564 175.635L275.803 149.691L193.382 7Z"
52 52
						fill="#EDEFF3"></path>
src/styles/global.css +4 −4
3 3
	:root {
4 4
		color-scheme: light;
5 5
		--theme-bg: #eff1f5;
6 -
		--theme-link: #e64553;
6 +
		--theme-link: #df8e1d;
7 7
		--theme-text: #4c4f69;
8 -
		--theme-accent: #40a02b;
9 -
		--theme-accent-2: #179299;
10 -
		--theme-quote: #40a02b;
8 +
		--theme-accent: #7287fd;
9 +
		--theme-accent-2: #7287fd;
10 +
		--theme-quote: #7287fd;
11 11
		--theme-menu-bg: rgb(250 250 250 / 0.85);
12 12
	}
13 13