Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🎨 style (CHASE Frontend): Dark Theme for Prime React Components #56

Merged
merged 2 commits into from
Jul 21, 2023
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
5 changes: 3 additions & 2 deletions chase/frontend/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
"use client";
import "./globals.scss";
import { Inter } from "next/font/google"; // TODO Remove Google Fonts and use local fonts (legal reasons)
import { Inter } from "next/font/google"; // Even though Google Fonts are used – no requests are sent to Google (see NEXT.JS docs)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thats cool, can you add a link to the comment which points to the relevant parts in the docs?


//theme
import "primereact/resources/themes/lara-light-indigo/theme.css";
import "@/themes/theme_light.scss";
import "@/themes/theme_dark.scss";
//core
import "primereact/resources/primereact.min.css";
//icons
Expand Down
4 changes: 2 additions & 2 deletions chase/frontend/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** @type {import('tailwindcss').Config} */
const plugin = require("tailwindcss/plugin");

dmunColors = {
const dmunColors = {
100: "#0c192a",
200: "#183254",
300: "#254b7e",
Expand All @@ -14,7 +14,7 @@ dmunColors = {
950: "#ecf2fb",
};

secondaryColors = {
const secondaryColors = {
100: "#332700",
200: "#664e00",
300: "#997400",
Expand Down
Loading
Loading