Skip to content

Commit 4a51499

Browse files
committed
change main color
1 parent 7fc1a18 commit 4a51499

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

public/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
<meta charset="utf-8">
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<meta name="viewport" content="width=device-width,initial-scale=1.0">
7-
<meta name="theme-color" content="#e15858">
8-
<meta name="apple-mobile-web-app-status-bar-style" content="#e15858">
7+
<meta name="theme-color" content="#ed3a3a">
8+
<meta name="apple-mobile-web-app-status-bar-style" content="#ed3a3a">
99
<link href="./img/icons/ara-pwa-192.png" rel="icon" sizes="192x192">
1010
<link href="./img/icons/ara-pwa-512.png" rel="icon" sizes="512x512">
1111
<link rel="apple-touch-icon" href="./img/icons/ara-pwa-512-wb.png">

public/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
"scope": "/",
1818
"display": "standalone",
1919
"background_color": "#000000",
20-
"theme_color": "#e15858"
20+
"theme_color": "#ed3a3a"
2121
}

src/components/TheOrganizations.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export default {
7171
return {
7272
organizations: [
7373
{ name: 'portal-notice', id: 'KAIST', backgroundColor: '#dbdbdb' },
74-
{ name: 'all-posts', id: 'all', icon: 'dashboard', backgroundColor: '#e15858' },
74+
{ name: 'all-posts', id: 'all', icon: 'dashboard', backgroundColor: '#ed3a3a' },
7575
{ name: 'clubs-union', id: 'UA', slug: 'clubs-union' },
7676
{ name: 'dormitory-council', id: 'GSDC', slug: 'dorm-council' },
7777
{ name: 'welfare-committee', id: 'SWF', slug: 'welfare-cmte' },

src/theme.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
$theme-red: #e15858;
2-
$theme-red-dark: rgb(204, 59, 59);
1+
$theme-red: #ed3a3a;
2+
$theme-red-dark: #c62626;
33
$dark: #333333;
44
$gray: #666666;
55
$family-sans-serif: var(--font);
@@ -8,8 +8,8 @@ $body-rendering: auto;
88

99
:root {
1010
// global theme variables
11-
--theme-500: rgb(204, 59, 59);
12-
--theme-400: #e15858;
11+
--theme-500: #c62626;
12+
--theme-400: #ed3a3a;
1313
--theme-300: #f9c7c7;
1414
--theme-100: #fdf0f0;
1515

0 commit comments

Comments
 (0)