Change some of the colors - 2.19 🚀

This commit is contained in:
Brandon Presley 2024-02-12 15:24:33 +13:00
parent 5e34bd4570
commit 9ddd2e963c
3 changed files with 7 additions and 6 deletions

View File

@ -85,8 +85,8 @@ android {
applicationId "com.massive" applicationId "com.massive"
minSdkVersion rootProject.ext.minSdkVersion minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 36233 versionCode 36234
versionName "2.18" versionName "2.19"
} }
signingConfigs { signingConfigs {
release { release {

View File

@ -8,7 +8,7 @@ export const LIGHT_COLORS = [
{ hex: "#E9DCC9", name: "Linen" }, { hex: "#E9DCC9", name: "Linen" },
{ hex: "#9ACD32", name: "Yellow Green" }, { hex: "#9ACD32", name: "Yellow Green" },
{ hex: "#FFD700", name: "Gold" }, { hex: "#FFD700", name: "Gold" },
{ hex: "#00CED1", name: "Dark Turquoise" }, { hex: "#00CED1", name: "Turquoise" },
]; ];
export const DARK_COLORS = [ export const DARK_COLORS = [
@ -17,9 +17,9 @@ export const DARK_COLORS = [
{ hex: "#000000", name: "Black" }, { hex: "#000000", name: "Black" },
{ hex: "#863c3c", name: "Brandy" }, { hex: "#863c3c", name: "Brandy" },
{ hex: "#1c6000", name: "Kermit" }, { hex: "#1c6000", name: "Kermit" },
{ hex: "#8A2BE2", name: "Blue Violet" }, { hex: "#8A2BE2", name: "Violet" },
{ hex: "#6A5ACD", name: "Slate Blue" }, { hex: "#6A5ACD", name: "Slate Blue" },
{ hex: "#FF8C00", name: "Dark Orange" }, { hex: "#CC3700", name: "Dark Orange" },
]; ];
export function darkenRgba(rgba: string, amount: number) { export function darkenRgba(rgba: string, amount: number) {

View File

@ -1,6 +1,6 @@
{ {
"name": "massive", "name": "massive",
"version": "2.18", "version": "2.19",
"private": true, "private": true,
"license": "GPL-3.0-only", "license": "GPL-3.0-only",
"scripts": { "scripts": {
@ -65,6 +65,7 @@
"jest": "^29.6.1", "jest": "^29.6.1",
"metro-react-native-babel-preset": "^0.77.0", "metro-react-native-babel-preset": "^0.77.0",
"react-test-renderer": "^18.2.0", "react-test-renderer": "^18.2.0",
"simple-git": "^3.22.0",
"typescript": "^5.1.6" "typescript": "^5.1.6"
}, },
"engines": { "engines": {