Skip to content

Commit

Permalink
Choose different themes with better colors
Browse files Browse the repository at this point in the history
  • Loading branch information
jtomeck committed May 14, 2024
1 parent 40f34d1 commit bd3e6b7
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions _includes/navbar.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
<select class="select select-sm select-ghost" data-choose-theme>
<option disabled selected>Theme</option>
<option value="">Auto</option>
<option value="dark">Dark</option>
<option value="light">Light</option>
<option value="night">Dark</option>
<option value="corporate">Light</option>
</select>
</div>
</div>
Expand Down Expand Up @@ -82,8 +82,8 @@
<select class="select select-sm select-ghost" data-choose-theme>
<option disabled selected>Theme</option>
<option value="">Auto</option>
<option value="dark">Dark</option>
<option value="light">Light</option>
<option value="night">Dark</option>
<option value="corporate">Light</option>
</select>
</li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion _layouts/default.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: compress
---
<!DOCTYPE html>
<html class="dark [--scroll-mt:9.875rem] lg:[--scroll-mt:6.3125rem] js-focus-visible" lang="{{ site.lang | default: "en-US" }}">
<html class="corporate [--scroll-mt:9.875rem] lg:[--scroll-mt:6.3125rem] js-focus-visible" lang="{{ site.lang | default: "en-US" }}">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
Expand Down
2 changes: 1 addition & 1 deletion _layouts/home.liquid
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
layout: default
---
<div class="bg-gradient-to-br from-sky-700 to-teal-400 text-white relative z-10">
<div class="bg-gradient-to-br from-primary to-accent text-white relative z-10">
<div class="max-w-screen-lg xl:max-w-screen-xl mx-auto p-8">
<h1 class="text-4xl sm:text-6xl lg:text-7xl leading-none font-extrabold tracking-tight mt-10 mb-8 sm:mt-14 sm:mb-10">
{{ page.main_title }}
Expand Down
4 changes: 2 additions & 2 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ DOI: [https://doi.org/10.34970/2020-ds01](https://doi.org/10.34970/2020-ds01)
</table>
</div>

<p class="bg-amber-100 text-amber-800 p-6 mb-16 rounded-md">
<p class="bg-warning text-warning-content p-6 mb-16 rounded-md">
*The newer version of the DICOM files are provided to avoid potential errors stemming from readers implementing a strict DICOM verification, as implemented in
<a href="http://dclunie.com/dicom3tools/dciodvfy.html">http://dclunie.com/dicom3tools/dciodvfy.html</a>.
<a href="http://dclunie.com/dicom3tools/dciodvfy.html" class="text-warning-content">http://dclunie.com/dicom3tools/dciodvfy.html</a>.
</p>

# Citing the 2020 dataset:
Expand Down
2 changes: 1 addition & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ module.exports = {
plugins: [require('@tailwindcss/typography'), require("daisyui")],
daisyui: {
logs: false,
themes: ["light", "dark"],
themes: ["corporate", "night"],
},
}

0 comments on commit bd3e6b7

Please sign in to comment.