Skip to content

Commit

Permalink
color schema を 変更
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaku-Kunimi committed Nov 21, 2024
1 parent 9763b8c commit 4d77e65
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
6 changes: 3 additions & 3 deletions src/components/Page1.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function Body({ view }: Props) {

return (
<div className="my-20">
<div className="text-left w-[450px] bg-Orange-2024 pr-3 py-8">
<div className="text-left w-[450px] bg-COLOR-UPCOMING-SESSION-LABEL pr-3 py-8">
<div className="text-right text-white font-bold font-din-2014 tracking-wide text-1.5xl">
UPCOMING SESSION
</div>
Expand Down Expand Up @@ -97,7 +97,7 @@ function Side({ view }: Props) {
return (
<div className="p-14">
{hasKeynote && (
<div className="text-right w-[750px] bg-Teal-2024 px-3 pt-1 pb-2 my-3 font-ryo-gothic-plusn">
<div className="text-right w-[750px] bg-COLOR-TIMETABLE-Box px-3 pt-1 pb-2 my-3 font-ryo-gothic-plusn">
<div className="flex flex-row">
<div className="text-left basis-1/2 text-white text-xxs font-din-2014 font-light">
<span>
Expand All @@ -122,7 +122,7 @@ function Side({ view }: Props) {
{talks.map((talk) => (
<div
key={talk.id}
className="text-right w-[750px] bg-Teal-2024 px-3 pt-2 my-3 font-ryo-gothic-plusn"
className="text-right w-[750px] bg-COLOR-TIMETABLE-Box px-3 pt-2 my-3 font-ryo-gothic-plusn"
>
<div className="flex flex-row">
<div className="text-left basis-1/2 text-white text-xxs font-din-2014 font-light">
Expand Down
2 changes: 1 addition & 1 deletion src/components/Page2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function Body({ view }: Props) {
}
return (
<div className=" mt-10 font-ryo-gothic-plusn">
<div className="text-left w-[450px] bg-Orange-2024 pr-3 py-8">
<div className="text-left w-[450px] bg-COLOR-UPCOMING-SESSION-LABEL pr-3 py-8">
<div className="text-right text-white font-bold font-din-2014 tracking-wide text-1.5xl">
UPCOMING SESSION
</div>
Expand Down
5 changes: 2 additions & 3 deletions tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@ const config: Config = {
'ryo-gothic-plusn': ['ryo-gothic-plusn', 'sans-serif'],
},
colors: {
'Orange-2024': '#006FB8',
'Blue-2024': '#00A6E1',
'Teal-2024': '#5F5F9D',
'COLOR-UPCOMING-SESSION-LABEL': '#ae291b',
'COLOR-TIMETABLE-Box': '#008f9e',
},
},
fontSize: {
Expand Down

0 comments on commit 4d77e65

Please sign in to comment.