Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions corpus/corpus/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
path("smp/", include("smp.urls")),
path("codeRed/", include("codeRed.urls")),
path("projectchimera/", include("chimera.urls")),
path("tlm/", include("tlm.urls")),
]

if settings.DEBUG:
Expand Down
30 changes: 26 additions & 4 deletions corpus/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,39 @@ module.exports = {
"secondary": "#002357",
"accent": "#011533",
"neutral": "#011533",
"base-100": "#330101", // background
"base-200": "#400102", // cards
"base-300": "#0d013b", // borders
"base-100": "#330101",
"base-200": "#400102",
"base-300": "#0d013b",
"info": "#002357",
"success": "#002357",
"warning": "#EC0300",
"error": "#EC0300",
}
},
{
tlm: {
"primary": "#7A4F08",
"primary-content": "#F2E8CE",
"secondary": "#5C3A05",
"secondary-content":"#F2E8CE",
"accent": "#C8922A",
"accent-content": "#1C0F02",
"neutral": "#1C0F02",
"neutral-content": "#F2E8CE",
"base-100": "#F2E8CE",
"base-200": "#E6D8A8",
"base-300": "#CCBA80",
"base-content": "#1C0F02",
"info": "#5A7A8A",
"success": "#4A7A3A",
"warning": "#C8922A",
"error": "#8B2500",
}
}
],
},
// TLM is a light theme — do NOT include it in the darkMode array.
// Including it would cause Tailwind to apply dark: variant styles
// on the TLM page, which is wrong for a light-themed page.
darkMode: ['class', '[data-theme="night"]', '[data-theme="codeRed"]'],
}

1 change: 1 addition & 0 deletions corpus/templates/components/general_dropdown.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,5 @@
<li><a href="{% url 'skyward_expedition_home' %}">Skyward Expedition</a></li>
<li><a href="{% url 'robotrix_home' %}">Robotrix</a></li>
<li><a href="{% url 'codeRed_home' %}">Code Red </a></li>
<li><a href="{% url 'tlm_home' %}">The Lazarus Missions</a></li>
</ul>
5 changes: 5 additions & 0 deletions corpus/templates/components/navbar_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,11 @@
Code Red
</a>
</li>
<li>
<a href="{% url 'tlm_home' %}">
The Lazarus Missions
</a>
</li>
</ul>
</details>
</li>
Expand Down
Binary file added corpus/templates/static/css/space age.ttf
Binary file not shown.
Binary file not shown.
Loading
Loading