앱 전체 배경/카드 색상을 coolors 팔레트로 통일
coolors.co 무채색 팔레트(1c1c1c-daddd8-ecebe4-eef0f2-fafaff)를 lib/theme/app_palette.dart에 정의하고, 로그인/대시보드/출석 확인/ 학생 계정 관리/스마트기기 반출(신청·대장)/관리자 화면 전반의 배너·배경·카드·기본 버튼 색을 이 팔레트로 교체. 기능적으로 의미 있는 색(위반/미출석/삭제/거절 등 경고성 빨간색, 승인 대기 등 상태 표시)은 그대로 유지 — 구조적/장식적 색상만 무채색으로 통일해 위험한 동작이 시각적으로 더 도드라지게 함. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
// 서버 통신/상태는 lib/function/admin_controller.dart가 담당한다.
|
||||
import 'package:flutter/material.dart';
|
||||
import '../function/admin_controller.dart';
|
||||
import '../theme/app_palette.dart';
|
||||
import 'login_screen.dart';
|
||||
|
||||
// ==========================================
|
||||
@@ -71,10 +72,11 @@ class _AdminDashboardState extends State<AdminDashboard> {
|
||||
listenable: _controller,
|
||||
builder: (context, _) {
|
||||
return Scaffold(
|
||||
backgroundColor: AppPalette.mist,
|
||||
appBar: AppBar(
|
||||
title: const Text('🛠️ 관리자 시스템'),
|
||||
backgroundColor: Colors.orange,
|
||||
foregroundColor: Colors.white,
|
||||
backgroundColor: AppPalette.ink,
|
||||
foregroundColor: AppPalette.paper,
|
||||
actions: [
|
||||
IconButton(
|
||||
icon: const Icon(Icons.logout),
|
||||
@@ -94,7 +96,7 @@ class _AdminDashboardState extends State<AdminDashboard> {
|
||||
const Icon(
|
||||
Icons.admin_panel_settings,
|
||||
size: 100,
|
||||
color: Colors.orange,
|
||||
color: AppPalette.ink,
|
||||
),
|
||||
const SizedBox(height: 20),
|
||||
const Text(
|
||||
|
||||
Reference in New Issue
Block a user