a95ee3f334
- updating colour pallete to match the nym.com sites - used the same font too - updated icons
Regenerating icons
Note
: This is likely to be temporary until
tauri iconis put back into the CLI.
The Tauri Docs say to use the CLI to generate icons: https://tauri.studio/docs/api/cli/#icon. However 1.0.0-rc.X appears to not have this command. 1.0.0-beta.6 does 🎉!
Do the following to regenerate the icons:
cd ~
git clone nym ...
cd nym
docker run -v "$(pwd)":/workspace -it node:16 /bin/bash
npm i -g @tauri-apps/cli@1.0.0-beta.6
cd /workspace/nym-wallet/src-tauri
tauri icon /workspace/assets/appicon/appicon.png
exit
Reasons to use docker:
- you can't destroy your dev environments
npmcache - if you mess it up, kill the container, try again
- inside the
src-tauridirectory,nodewill resolve to the nearestnode_modulesdirectory and you'll get the wrongtauricli