Skip to content

Commit

Permalink
style(colors): update colors on ui
Browse files Browse the repository at this point in the history
  • Loading branch information
tunahanertekin committed May 29, 2023
1 parent 8a3005e commit 3b6f697
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 13 deletions.
3 changes: 2 additions & 1 deletion .docker/robolaunch/dockerfiles/base/Dockerfile.nvidia
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ WORKDIR /src
COPY client/package*.json ./
RUN npm install

ARG ASDfAa
ARG ccc

#
# build client
COPY client/ .
Expand Down
2 changes: 1 addition & 1 deletion client/public/browserconfig.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<msapplication>
<tile>
<square150x150logo src="/mstile-150x150.png"/>
<TileColor>#19bd9c</TileColor>
<TileColor>#8C52FF</TileColor>
</tile>
</msapplication>
</browserconfig>
6 changes: 3 additions & 3 deletions client/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
<link rel="mask-icon" href="safari-pinned-tab.svg" color="#19bd9c">
<meta name="msapplication-TileColor" content="#19bd9c">
<meta name="theme-color" content="#19bd9c">
<link rel="mask-icon" href="safari-pinned-tab.svg" color="#8C52FF">
<meta name="msapplication-TileColor" content="#8C52FF">
<meta name="theme-color" content="#8C52FF">
<style> /* weird iOS bug, if this is not set right here, video just does not start */ .video-container { width: 100%; height: 100%; } </style>
</head>
<body>
Expand Down
4 changes: 2 additions & 2 deletions client/public/site.webmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"type": "image/png"
}
],
"theme_color": "#19bd9c",
"background_color": "#19bd9c",
"theme_color": "#8C52FF",
"background_color": "#8C52FF",
"display": "standalone"
}
4 changes: 2 additions & 2 deletions client/src/assets/styles/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ $background-modifier-accent: hsla(0, 0%, 100%, 0.06);
$elevation-low: 0 1px 0 rgba(4, 4, 5, 0.2), 0 1.5px 0 rgba(6, 6, 7, 0.05), 0 2px 0 rgba(4, 4, 5, 0.05);
$elevation-high: 0 8px 16px rgba(0, 0, 0, 0.24);

$style-primary: #19bd9c;
$style-error: #d32f2f;
$style-primary: #8C52FF;
$style-error: #B9314F;

$menu-height: 40px;
$controls-height: 125px;
Expand Down
6 changes: 3 additions & 3 deletions client/src/components/avatar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@
c = 0
for (let i = 0; i < seed.length; i++) {
a += seed.charCodeAt(i) * 3
b += seed.charCodeAt(i) * 5
c += seed.charCodeAt(i) * 7
a += seed.charCodeAt(i) * 5
b += seed.charCodeAt(i) * 7
c += seed.charCodeAt(i) * 9
}
let x = Math.floor(128 + (a % 128))
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
subMaxLevel: 2,
name: 'neko',
repo: 'm1k1o/neko',
themeColor: '#19bd9c'
themeColor: '#8C52FF'
}
</script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
Expand Down

0 comments on commit 3b6f697

Please sign in to comment.