Skip to content

Commit

Permalink
#7
Browse files Browse the repository at this point in the history
  • Loading branch information
komosyu4649 committed Oct 23, 2022
1 parent d1523a1 commit 1ae02c8
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 15 deletions.
2 changes: 1 addition & 1 deletion styles/PostDetailMain.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
padding: 3.5rem 5rem 1rem;
// padding: 4.5rem 6rem 2rem;
// background-color: var.$purple_week;
background-color: var.$black_week;
background-color: var.$key_week;
border-radius: 1rem;
li {
list-style-type: disc;
Expand Down
4 changes: 2 additions & 2 deletions styles/PostItem.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

.mainItem {
// background-color: var.$purple_week;
background-color: var.$black_week;
background-color: var.$key_week;
// border-radius: 2rem;
border-radius: 1.5rem;
}
Expand Down Expand Up @@ -50,7 +50,7 @@

// .mainItem {
// background-color: var.$purple_week;
// // background-color: var.$black_week;
// // background-color: var.$key_week;
// border-radius: 1.5rem;
// }
// .mainItemLink {
Expand Down
2 changes: 1 addition & 1 deletion styles/PostsList.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
width: 50%;
height: 100%;
// background-color: var.$purple;
background-color: var.$black;
background-color: var.$key;
border-radius: 5rem;
}
.main {
Expand Down
4 changes: 2 additions & 2 deletions styles/StateCurrent.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

.category {
// color: var.$purple;
color: var.$black;
color: var.$key;
background-color: var.$white;
// border: 2px solid var.$purple;
border: 2px solid var.$black;
border: 2px solid var.$key;
}
2 changes: 1 addition & 1 deletion styles/globals.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ body {
// Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
font-family: var.$notosansjp;
// background-color: var.$purple;
background-color: var.$black;
background-color: var.$key;
color: var.$white;
}

Expand Down
2 changes: 1 addition & 1 deletion styles/stateLayout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
}
.postItem {
// background-color: var.$purple_week;
background-color: var.$black_week;
background-color: var.$key_week;
border-radius: 1.5rem;
}
.postItemLink {
Expand Down
21 changes: 14 additions & 7 deletions styles/variables.scss
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
// color
// $purple: #111321;
// $purple_week: #232432;
// $white: #f8fcfd;
// $white: #f7f7f7;
$white: #eeeeee;
$black: #151515;
$black_week: #292929;
// default
$key: #111321;
$key_week: #232432;
$white: #ffffff;
//
// dark mode
// $white: #ffffff;
// $key: #151515;
// $key_week: #292929;
//
// light mode
// $white: #292929;
// $key: #ffffff;
// $key_week: #ecedef;

// font
$inter: 'Inter', sans-serif;
Expand Down

0 comments on commit 1ae02c8

Please sign in to comment.