diff options
Diffstat (limited to 'frontend/app/components/Gaming')
| -rw-r--r-- | frontend/app/components/Gaming/CodeBlock.tsx | 2 | ||||
| -rw-r--r-- | frontend/app/components/Gaming/ExecStatusIndicatorIcon.tsx | 2 | ||||
| -rw-r--r-- | frontend/app/components/Gaming/RankingTable.tsx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/frontend/app/components/Gaming/CodeBlock.tsx b/frontend/app/components/Gaming/CodeBlock.tsx index f1516ed..2b330dd 100644 --- a/frontend/app/components/Gaming/CodeBlock.tsx +++ b/frontend/app/components/Gaming/CodeBlock.tsx @@ -33,7 +33,7 @@ export default function CodeBlock({ code, language }: Props) { > <FontAwesomeIcon icon={faCopy} className="text-gray-600" /> {showCopied && ( - <span className="ml-1 text-xs text-blue-600">Copied!</span> + <span className="ml-1 text-xs text-brand-600">Copied!</span> )} </button> )} diff --git a/frontend/app/components/Gaming/ExecStatusIndicatorIcon.tsx b/frontend/app/components/Gaming/ExecStatusIndicatorIcon.tsx index 44d28ad..e4260ec 100644 --- a/frontend/app/components/Gaming/ExecStatusIndicatorIcon.tsx +++ b/frontend/app/components/Gaming/ExecStatusIndicatorIcon.tsx @@ -31,7 +31,7 @@ export default function ExecStatusIndicatorIcon({ status }: Props) { <FontAwesomeIcon icon={faCircleCheck} fixedWidth - className="text-sky-500" + className="text-brand-500" /> ); default: diff --git a/frontend/app/components/Gaming/RankingTable.tsx b/frontend/app/components/Gaming/RankingTable.tsx index 7359d40..4bfdad3 100644 --- a/frontend/app/components/Gaming/RankingTable.tsx +++ b/frontend/app/components/Gaming/RankingTable.tsx @@ -38,7 +38,7 @@ export default function RankingTable({ problemLanguage }: Props) { const ranking = useAtomValue(rankingAtom); return ( - <div className="overflow-x-auto border-2 border-blue-600 rounded-xl"> + <div className="overflow-x-auto border-2 border-brand-600 rounded-xl"> <table className="min-w-full divide-y divide-gray-400 border-collapse"> <thead className="bg-gray-50"> <tr> |
