Skip to content

Commit

Permalink
Branding
Browse files Browse the repository at this point in the history
  • Loading branch information
caipira113 committed Apr 9, 2023
1 parent 39cf80e commit f6f77db
Show file tree
Hide file tree
Showing 16 changed files with 72 additions and 20 deletions.
Binary file modified packages/backend/assets/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified packages/backend/assets/favicon.ico
Binary file not shown.
Binary file modified packages/backend/assets/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified packages/backend/assets/icons/192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added packages/backend/assets/icons/256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified packages/backend/assets/icons/512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified packages/backend/assets/splash.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion packages/backend/src/server/web/bios.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
}

html {
background: #ffb4e1;
background: #df99f7;
}

main {
Expand Down
20 changes: 11 additions & 9 deletions packages/backend/src/server/web/boot.js
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,8 @@
body,
html {
background-color: #222;
color: #dfddcc;
background-color: rgb(27, 26, 37);
color: rgb(242, 238, 252);
justify-content: center;
margin: auto;
padding: 10px;
Expand All @@ -227,32 +227,32 @@
}
.button-big {
background: linear-gradient(90deg, rgb(134, 179, 0), rgb(74, 179, 0));
background: linear-gradient(90deg, rgb(184, 185, 247), rgb(204, 184, 247));
line-height: 50px;
}
.button-big:hover {
background: rgb(153, 204, 0);
background: rgb(230, 230, 252);
}
.button-small {
background: #444;
background: rgb(35, 35, 47);
line-height: 40px;
}
.button-small:hover {
background: #555;
background: rgba(184, 185, 247, 0.15);
}
.button-label-big {
color: #222;
color: rgb(33, 32, 41);
font-weight: bold;
font-size: 20px;
padding: 12px;
}
.button-label-small {
color: rgb(153, 204, 0);
color: rgba(184, 185, 247);
font-size: 16px;
padding: 12px;
}
Expand Down Expand Up @@ -283,11 +283,13 @@
}
code {
color: #f8f8f2;
text-shadow: 0 1px rgba(0,0,0,.3);
font-family: Fira, FiraCode, monospace;
}
details {
background: #333;
background: #272822;
margin-bottom: 2rem;
padding: 0.5rem 1rem;
width: 40rem;
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/src/server/web/cli.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
}

html {
background: #ffb4e1;
background: #df99f7;
}

main {
Expand Down
10 changes: 8 additions & 2 deletions packages/backend/src/server/web/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,21 @@
"name": "Misskey",
"start_url": "/",
"display": "standalone",
"background_color": "#313a42",
"theme_color": "#86b300",
"background_color": "#1b1a25",
"theme_color": "#b8b9f7",
"icons": [
{
"src": "/static-assets/icons/192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/static-assets/icons/256.png",
"sizes": "256x256",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/static-assets/icons/512.png",
"sizes": "512x512",
Expand Down
6 changes: 3 additions & 3 deletions packages/frontend/src/pages/welcome.entrance.a.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
<div class="shape2"></div>
<img src="/client-assets/misskey.svg" class="misskey"/>
<div class="emojis">
<MkEmoji :normal="true" :no-style="true" emoji="👍"/>
<MkEmoji :normal="true" :no-style="true" emoji="🍮"/>
<MkEmoji :normal="true" :no-style="true" emoji=""/>
<MkEmoji :normal="true" :no-style="true" emoji="😆"/>
<MkEmoji :normal="true" :no-style="true" emoji="🍮"/>
<MkEmoji :normal="true" :no-style="true" emoji="🎉"/>
<MkEmoji :normal="true" :no-style="true" emoji="🍮"/>
</div>
Expand Down Expand Up @@ -214,7 +214,7 @@ function exploreOtherServers() {
border-radius: var(--radius);
box-shadow: 0 12px 32px rgb(0 0 0 / 25%);
text-align: center;
> .icon {
width: 85px;
margin-top: -47px;
Expand Down
4 changes: 2 additions & 2 deletions packages/frontend/src/pages/welcome.entrance.c.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<MkFeaturedPhotos class="bg"/>
<div class="fade"></div>
<div class="emojis">
<MkEmoji :normal="true" :no-style="true" emoji="👍"/>
<MkEmoji :normal="true" :no-style="true" emoji="🍮"/>
<MkEmoji :normal="true" :no-style="true" emoji=""/>
<MkEmoji :normal="true" :no-style="true" emoji="😆"/>
<MkEmoji :normal="true" :no-style="true" emoji="🍮"/>
<MkEmoji :normal="true" :no-style="true" emoji="🎉"/>
<MkEmoji :normal="true" :no-style="true" emoji="🍮"/>
</div>
Expand Down
4 changes: 2 additions & 2 deletions packages/frontend/src/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -329,8 +329,8 @@ interface Watcher {
* 常にメモリにロードしておく必要がないような設定情報を保管するストレージ(非リアクティブ)
*/
import { miLocalStorage } from './local-storage';
import lightTheme from '@/themes/l-light.json5';
import darkTheme from '@/themes/d-green-lime.json5';
import lightTheme from '@/themes/l-stella-r2.json5';
import darkTheme from '@/themes/d-stella-r2.json5';
import { Note, UserDetailed, Page } from 'misskey-js/built/entities';

export class ColdDeviceStorage {
Expand Down
22 changes: 22 additions & 0 deletions packages/frontend/src/themes/d-stella-r2.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
id: 'd932db14-5aed-49d4-85b2-cfea32884044',

name: 'Stella Night R2',
author: 'caipira113',

base: 'dark',

props: {
accent: 'rgb(184, 185, 247)',
bg: 'rgb(27, 26, 37)',
fg: 'rgb(242, 238, 252)',
fgOnAccent: '@panel',
panel: 'rgb(33, 32, 41)',
renote: '@accent',
link: 'rgb(247, 217, 255)',
mention: '@link',
hashtag: 'rgb(100, 179, 255)',
driveFolderBg: 'rgb(73, 71, 96)',
divider: 'rgb(48, 47, 61)',
},
}
22 changes: 22 additions & 0 deletions packages/frontend/src/themes/l-stella-r2.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
id: '5a079dd7-d741-4ef6-8292-2ca8204e6f55',

name: 'Stella Light R2',
author: 'caipira113',

base: 'light',

props: {
accent: 'rgb(137, 131, 226)',
bg: 'rgb(234, 230, 253)',
fg: 'rgb(91, 87, 150)',
fgOnAccent: '@panel',
panel: 'rgb(249, 247, 255)',
renote: '@accent',
link: 'rgb(137, 105, 151)',
mention: '@link',
hashtag: 'rgb(0, 43, 255)',
driveFolderBg: 'rgba(137, 131, 226, 0.3)',
divider: 'rgb(208, 205, 217)',
},
}

0 comments on commit f6f77db

Please sign in to comment.