* Change primary colour

* Change fonts

* font options

* font selection confirmed

---------

Co-authored-by: Timothy Armes <tim@timothyarmes.com>
This commit is contained in:
Owen Rees
2023-07-17 20:10:06 +02:00
committed by GitHub
parent d8b9a0ced4
commit 1f0077b1a8
14 changed files with 81 additions and 31 deletions
+7 -7
View File
@@ -61,7 +61,7 @@ export default function TournamentTable() {
<label>
<input
type="checkbox"
className="mr-2"
className="mr-2 h-4 w-4 rounded border-gray-400 text-primary focus:ring-primary"
checked={syncVisible}
onChange={() => setSyncVisible(!syncVisible)}
/>
@@ -71,7 +71,7 @@ export default function TournamentTable() {
<label>
<input
type="checkbox"
className="mr-2"
className="mr-2 h-4 w-4 rounded border-gray-400 text-primary focus:ring-primary"
checked={normsOnly}
onChange={() => setNormsOnly(!normsOnly)}
/>
@@ -92,19 +92,19 @@ export default function TournamentTable() {
>
<thead>
<tr>
<th className="sticky top-0 bg-teal-600 p-3 text-white dark:bg-gray-600">
<th className="sticky top-0 bg-primary-600 p-3 text-white dark:bg-gray-600">
{t("date")}
</th>
<th className="sticky top-0 bg-teal-600 p-3 text-white dark:bg-gray-600">
<th className="sticky top-0 bg-primary-600 p-3 text-white dark:bg-gray-600">
{t("town")}
</th>
<th className="sticky top-0 bg-teal-600 p-3 text-white dark:bg-gray-600">
<th className="sticky top-0 bg-primary-600 p-3 text-white dark:bg-gray-600">
{t("tournament")}
</th>
<th className="sticky top-0 bg-teal-600 p-3 text-white dark:bg-gray-600">
<th className="sticky top-0 bg-primary-600 p-3 text-white dark:bg-gray-600">
{t("timeControl")}
</th>
<th className="sticky top-0 w-[50px] bg-teal-600 p-3 text-white dark:bg-gray-600"></th>
<th className="sticky top-0 w-[50px] bg-primary-600 p-3 text-white dark:bg-gray-600"></th>
</tr>
</thead>