fix: accent button text color — #0D0D0D to var(--bg) for light mode

This commit is contained in:
posimai 2026-03-25 16:28:03 +09:00
parent 13e5f2d849
commit 4ea0d7da81
1 changed files with 4 additions and 4 deletions

View File

@ -126,7 +126,7 @@
} }
.cat-btn.active { .cat-btn.active {
background: var(--accent); background: var(--accent);
color: #0D0D0D; color: var(--bg);
border-color: var(--accent); border-color: var(--accent);
font-weight: 600; font-weight: 600;
} }
@ -409,7 +409,7 @@
padding: 10px; padding: 10px;
margin-top: 8px; margin-top: 8px;
background: var(--accent); background: var(--accent);
color: #0D0D0D; color: var(--bg);
border: none; border: none;
border-radius: 8px; border-radius: 8px;
font-family: inherit; font-family: inherit;
@ -587,7 +587,7 @@
width: 100%; width: 100%;
padding: 12px; padding: 12px;
background: var(--accent); background: var(--accent);
color: #0D0D0D; color: var(--bg);
border: none; border: none;
border-radius: 8px; border-radius: 8px;
font-family: inherit; font-family: inherit;
@ -612,7 +612,7 @@
</head> </head>
<body> <body>
<a href="#main-content" class="skip-link" tabindex="0" <a href="#main-content" class="skip-link" tabindex="0"
style="position:absolute;top:-100%;left:8px;background:var(--accent);color:#0D0D0D;padding:8px 16px;border-radius:8px;font-weight:600;font-size:13px;z-index:10000;text-decoration:none"> style="position:absolute;top:-100%;left:8px;background:var(--accent);color:var(--bg);padding:8px 16px;border-radius:8px;font-weight:600;font-size:13px;z-index:10000;text-decoration:none">
コンテンツへスキップ コンテンツへスキップ
</a> </a>