Skip to content

Commit

Permalink
feat: temporary force light mode
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaudambro committed Aug 8, 2023
1 parent 55456ac commit ba2ab9f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default function RootLayout({
const lang = "fr"

return (
<html {...getHtmlAttributes({ defaultColorScheme, lang })}>
<html {...getHtmlAttributes({ defaultColorScheme: "light", lang })}>
<head>
<StartDsfr />
<DsfrHead
Expand Down
4 changes: 2 additions & 2 deletions src/styles/globals.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

/*
:root {
--foreground-rgb: 0, 0, 0;
--background-start-rgb: 214, 219, 220;
Expand All @@ -14,7 +14,7 @@
--background-start-rgb: 0, 0, 0;
--background-end-rgb: 0, 0, 0;
}
}
} */

body {
color: rgb(var(--foreground-rgb));
Expand Down

0 comments on commit ba2ab9f

Please sign in to comment.