style : update tema

Deskripsi:
- update global
- update announcement
- update update color palette
- update group
- update home
- update position
- update project
- update member

No Issue
This commit is contained in:
lukman
2024-09-12 17:31:00 +08:00
parent a211e7e4e4
commit cbdaac6319
80 changed files with 870 additions and 568 deletions

View File

@@ -1,5 +1,6 @@
"use client"
import { WARNA } from '@/module/_global';
import { TEMA, WARNA } from '@/module/_global';
import { useHookstate } from '@hookstate/core';
import { ActionIcon, Box, Center, Grid, Group, Spoiler, Text } from '@mantine/core';
import { useMediaQuery } from '@mantine/hooks';
import { useRouter } from 'next/navigation';
@@ -67,18 +68,19 @@ const dataNotification = [
export default function ListNotification() {
const router = useRouter()
const isMobile = useMediaQuery('(max-width: 369px)');
const tema = useHookstate(TEMA)
return (
<Box>
{dataNotification.map((v, i) => {
return (
<Box key={i} my={15}>
<Box style={{
border: `1px solid ${WARNA.borderOrange}`,
border: `1px solid ${tema.get().utama}`,
padding: 20,
borderRadius: 15
}} >
<Group align='center'>
<ActionIcon variant="light" bg={WARNA.biruTua} size={35} radius={100} aria-label="icon">
<ActionIcon variant="light" bg={tema.get().utama} size={35} radius={100} aria-label="icon">
<FaBell size={20} color='white' />
</ActionIcon>
<Box