【日語語彙】你很大方嗎?「気前」相關單字
大家好,我是小狸老師!遇到請客毫不手軟的朋友,日文會形容他「気前がいい」。
但如果想形容一個人很小氣,又該怎麼說呢?今天就透過 10 張圖卡,一次學會關於「慷慨與吝嗇」的實用日語單字!
關鍵單字與情境:
1. 気前 (氣度):指花錢的氣度。
2. 太っ腹 (大方):形容度量大、慷慨。
3. ケチ (小氣):吝嗇的人。
_____________
感謝支持
小狸老師作品
N2/N1 語彙
人って?
相關日語怎麼說?
気前が悪い (小氣)。
社長、太っ腹!
(老闆真大方!)
今日は大盤振る舞いだ!
(今天大請客!)
彼は金持ちなのにケチだ。
(他有錢卻很小氣。)
(前輩,又是你請客?)
B: うん、気前いいね。
(嗯,真大方呢。)
(有時含存不住錢的意味)。
(A) 太っ腹:慷慨
(B) 気前がいい:大方
(C) ケチ:小氣
日語單字?
小狸日語
一起看新聞學日文!
// --- 智慧配色引擎 + 和柄背景 (SVG Data URI) ---
const palettes = [
{
name: '狸藍 (青海波)',
primary: '#599ddb', accent: '#ff8fab', cardBg: '#e0f2fe', gridLine: '#bfdbfe', noteBg: '#f1f8ff', noteBorder: '#bbdfff',
pattern: `url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' %3E%3Cpath d='M0 10a10 10 0 0 1 10 10h10a10 10 0 0 1-10-10V0a10 10 0 0 1-10 10z' fill='%23bfdbfe' fill-opacity='0.6'/%3E%3C/svg%3E")`
},
{
name: '抹茶 (市松)',
primary: '#66c18c', accent: '#ffb347', cardBg: '#e6f7ef', gridLine: '#a8d5ba', noteBg: '#f0f9f4', noteBorder: '#b3e2c9',
pattern: `url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' %3E%3Crect x='0' y='0' width='10' height='10' fill='%23a8d5ba' fill-opacity='0.5'/%3E%3Crect x='10' y='10' width='10' height='10' fill='%23a8d5ba' fill-opacity='0.5'/%3E%3C/svg%3E")`
},
{
name: '杏桃 (紅葉)',
primary: '#f4a261', accent: '#2a9d8f', cardBg: '#fae1cc', gridLine: '#f0d2b6', noteBg: '#fffaf5', noteBorder: '#fcd5b0',
pattern: `url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' %3E%3Cpath d='M12 2l2 5 5-2-2 5 5 2-5 2 2 5-5-2-2 5-2-5-5-2 5-2-2-5 5 2z' fill='%23f0d2b6' fill-opacity='0.7'/%3E%3C/svg%3E")`
},
{
name: '紫藤 (鹿の子)',
primary: '#9d84c4', accent: '#ffcdb2', cardBg: '#e9e3f3', gridLine: '#d1c0e3', noteBg: '#f8f6fc', noteBorder: '#dcd1eb',
pattern: `url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' %3E%3Ccircle cx='8' cy='8' r='3' fill='%23d1c0e3' fill-opacity='0.6'/%3E%3Ccircle cx='8' cy='8' r='1' fill='%23ffffff'/%3E%3C/svg%3E")`
},
{
name: '櫻花 (桜)',
primary: '#e57373', accent: '#599ddb', cardBg: '#ffdde2', gridLine: '#ffb3ba', noteBg: '#fff5f6', noteBorder: '#ffccd2',
pattern: `url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' %3E%3Cpath d='M12 2C12 2 14 6 17 6C20 6 22 4 22 4C22 4 21 8 22 11C23 14 20 15 20 15C20 15 21 19 18 20C15 21 14 18 14 18C14 18 11 21 8 20C5 19 6 15 6 15C6 15 3 14 4 11C5 8 4 4 4 4C4 4 6 6 9 6C12 6 12 2 12 2Z' fill='%23ffb3ba' fill-opacity='0.6'/%3E%3C/svg%3E")`
}
];
function randomizeTheme() {
const randomIndex = Math.floor(Math.random() * palettes.length);
const theme = palettes[randomIndex];
const root = document.documentElement;
// 設定顏色變數
root.style.setProperty('--primary', theme.primary);
root.style.setProperty('--accent', theme.accent);
root.style.setProperty('--card-bg', theme.cardBg);
root.style.setProperty('--grid-line', theme.gridLine);
// 設定筆記框顏色
const noteBoxes = document.querySelectorAll('.note-box');
noteBoxes.forEach(box => {
box.style.backgroundColor = theme.noteBg;
box.style.borderColor = theme.noteBorder;
});
// ★★★ 設定 IG 卡片背景 (和柄) ★★★
const igCards = document.querySelectorAll('.ig-card');
igCards.forEach(card => {
card.style.backgroundImage = theme.pattern;
});
console.log(`目前主題:${theme.name}`);
}
// 頁面載入時自動執行一次
window.onload = randomizeTheme;