โค้ดสี

WordPress Color Palette & Code Generator

🎨 โค้ดสี | Color code

ตารางสีและ code สำหรับตกแต่ง – คลิกเพื่อคัดลอก code

🔴 สีหลัก (Primary Colors)

🟠 สีรอง (Secondary Colors)

⚫ สีกลาง (Neutral Colors)

✨ สีเน้น (Accent Colors)

🌈 สี RGB (RGB Colors)

🎨 เฉดสี (Color Shades)

🌅 สีไล่โทน (Gradient Colors)

📝 วิธีใช้สีใน WordPress

CSS Custom Properties

/* ใน style.css */
:root {
–primary-color: #3b82f6;
–text-color: #1f2937;
}
.my-element {
color: var(–primary-color);
}

WordPress Customizer

/* ใน functions.php */
$wp_customize->add_setting(
‘primary_color’,
array(‘default’ => ‘#3b82f6’)
);