Skip to content

Commit 695dbc6

Browse files
committed
...and more
1 parent 50139ba commit 695dbc6

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

src/app/(dashboard)/dns/settings/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ const SettingDisabledManagementGroups = ({
128128
</div>
129129
<div
130130
className={
131-
"flex justify-end bg-nb-gray-900/20 border-t border-nb-gray-900 px-8 py-5"
131+
"flex justify-end bg-gray-50 dark:bg-nb-gray-900/20 border-t border-gray-200 dark:border-nb-gray-900 px-8 py-5"
132132
}
133133
>
134134
<Button

src/components/FancyToggleSwitch.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ export const fancyToggleSwitchVariants = cva([], {
2020
{
2121
variant: "default",
2222
state: true,
23-
className: ["border-nb-gray-800 bg-nb-gray-900/70"],
23+
className: ["border-gray-300 bg-gray-100 dark:border-nb-gray-800 dark:bg-nb-gray-900/70"],
2424
},
2525
{
2626
variant: "default",
2727
state: false,
2828
className: [
29-
"border-nb-gray-910 bg-nb-gray-900/30 hover:bg-nb-gray-900/40",
29+
"border-gray-200 bg-gray-50 hover:bg-gray-100 dark:border-nb-gray-910 dark:bg-nb-gray-900/30 dark:hover:bg-nb-gray-900/40",
3030
],
3131
},
3232
],

src/components/ui/UserAvatar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export const UserAvatar = ({ size = "default" }: Props) => {
2424
) : (
2525
<div
2626
className={cn(
27-
"rounded-full flex items-center justify-center bg-nb-gray-900 text-netbird uppercase",
27+
"rounded-full flex items-center justify-center bg-gray-200 dark:bg-nb-gray-900 text-gray-700 dark:text-netbird uppercase",
2828
size == "small" && "w-8 h-8",
2929
size == "default" && "w-10 h-10",
3030
size == "large" && "w-12 h-12",

src/layouts/AppLayout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export const viewport: Viewport = {
3333
export default function AppLayout({ children }: { children: React.ReactNode }) {
3434
return (
3535
<html lang="en" suppressHydrationWarning>
36-
<body className={cn(inter.className, "bg-white dark:bg-nb-gray transition-colors")}>
36+
<body className={cn(inter.className, "bg-white dark:bg-nb-gray-950 transition-colors")}>
3737
<AnalyticsProvider>
3838
<DialogProvider>
3939
<GlobalThemeProvider>

src/modules/users/table-cells/ServiceUserNameCell.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default function ServiceUserNameCell({ user }: Props) {
1212
<div className={cn("flex gap-4 px-2 py-1 items-center")}>
1313
<div
1414
className={
15-
"w-8 h-8 rounded-full relative flex items-center justify-center text-white uppercase text-md font-medium bg-nb-gray-900"
15+
"w-8 h-8 rounded-full relative flex items-center justify-center text-white uppercase text-md font-medium bg-gray-500 dark:bg-nb-gray-900"
1616
}
1717
>
1818
<IconSettings2 size={14} />

src/modules/users/table-cells/UserNameCell.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default function UserNameCell({ user }: Props) {
1717
>
1818
<div
1919
className={
20-
"w-10 h-10 rounded-full relative flex items-center justify-center text-white uppercase text-md font-medium bg-nb-gray-900"
20+
"w-10 h-10 rounded-full relative flex items-center justify-center text-white uppercase text-md font-medium bg-gray-500 dark:bg-nb-gray-900"
2121
}
2222
style={{
2323
color: user?.name

0 commit comments

Comments
 (0)