Why art feels good: What neuroscience says about creativity and emotion
Why art feels good: What neuroscience says about creativity and emotion
Read this story aloud
Listen to the clean text version of this article
Ready
6 min listen
Audio reading is not supported on this browser.
Standing before that painting in Gigiri, the experience felt personal yet universal because your brain was doing multiple forms of work at once: processing visual complexity, assigning emotional value, retrieving personal memory, and creating meaning
I recently visited Coffee Lab in Gigiri and found myself stopped in my tracks by a painting that seemed to pulse with life.
From a distance, its lines looked like the veins of leaves; up close, the composition felt futuristic, almost something from another world.
It was not just a visual experience but an emotional one. I felt drawn into its complexity, as though the image was speaking directly to something within me.
More To Read
- Owning cats in childhood may double risk of schizophrenia, review suggests
- Guterres to visit Kenya on Monday for launch of UN expansion at Gigiri Complex
- Legal row erupts on woman’s medical test history as KEMRI says ‘no evidence of HIV infection’
- Kenya mourns celebrated painter behind Java and 1998 US embassy bombing art, Patrick Mukabi
- People who frequently hide their emotions more likely to show narcissistic traits, study shows
- Scientists discover why some Covid-19 survivors cannot taste food years later
That sensation, the pleasure, the curiosity, the quiet sense of wonder, is not unique or accidental.
According to neuroscience, the brain is wired to respond to creativity and emotional meaning, shaping not only how we perceive art but why we value it.
Research published in Frontiers in Human Neuroscience in 2025 shows that viewing art that individuals personally find beautiful increases activity in the ventral striatum and orbitofrontal cortex regions, much like the response to rewarding stimuli such as food or music.
Latest Stories
- Sudan’s people subject to ‘relentless’ drone strikes in El Obeid
- Pope Leo XIV shines spotlight on Mediterranean migration crisis
- Study finds intermittent fasting helps maintain weight loss for at least a year
- Busia school named among global finalists for 2026 education prize
Neuroimaging studies conducted at institutions such as University College London and Duke University have used functional MRI to show that when people view artwork they find emotionally resonant, dopamine, the neurotransmitter linked with pleasure and reward, is released in measurable quantities.
This release not only creates a sense of enjoyment but also increases attention and memory encoding, making the experience feel rich and meaningful.
Creativity as neural collaboration
Creativity itself is not localised to a single “art centre” in the brain but is instead the product of multiple networks working together.
One of the most studied is the Default Mode Network (DMN), a set of interconnected regions that becomes active when the mind is at rest, daydreaming, or imagining novel scenarios.
Scientists found that the DMN plays a crucial role when artists conceive ideas that have not yet taken shape on the canvas or in sound.
A study published in npj Science of Learning in 2025 examined brain activity in people while they engaged in creative tasks.
Researchers found that individuals who demonstrated high levels of creativity showed greater connectivity between the DMN and other networks responsible for executive control and sensory processing.
This connectivity allows the brain to recombine memories, sensations, and emotions into new forms, which is the essence of creative thought.
These findings suggest that creativity emerges from neural flexibility, the ability of the brain to move fluidly between internal imagination and external execution.
In artists, this neural flexibility is not random; it reflects a sophisticated capacity to integrate experience, emotion, and innovation.
Why personal meaning amplifies emotional responses
One of the most striking findings in the neuroscience of art is that meaning matters more than form.
Studies show that the same image can produce very different neural responses depending on the viewer’s personal experience, memory, and emotional state.
A 2024 article in NeuroImage demonstrated that when participants viewed abstract art, brain regions associated with self‑referential thought, such as the medial prefrontal cortex, showed higher activation than when viewing representational images.
This means that abstract or ambiguous art often engages the viewer in internal meaning‑making, prompting reflection, comparison with personal memory, and emotional evaluation.
This helps explain why two people can look at the same painting and come away with entirely different experiences.
The brain doesn’t passively receive the image; it interprets it, consciously and unconsciously, based on a lifetime of stored associations. In that sense, art becomes a collaboration between the creator’s expression and the viewer’s inner world.
Emotional resonance and lived experience
Neuroscientists also emphasise the role of the limbic system, a set of structures involved in emotion and memory, in shaping how art feels.
A 2024 review in theJournal of Affective Neuroscience explains that emotions evoked by art are not superficial reactions; they involve deep neural integration between perception, memory, and affective meaning.
This integration is why art can make us feel understood, provoke introspection, or stir memories that have nothing to do with the artwork itself.
Beyond pleasure: meaning, empathy, and connection
Art can feel good not only because it triggers pleasure centres but also because it fosters empathy and connection.
Other Topics To Read
Studies using neuroimaging techniques have shown that when people engage with narrative art forms, such as stories, theatre, and poetry, neural networks linked to social cognition and theory of mind are activated. These are the same regions that light up when we connect emotionally with other people.
In this way, art functions as a proxy for social experience, allowing the brain to simulate emotional understanding even in solitude.
This has broader implications for why humans across cultures and history have created and valued art. It is not merely decoration but a form of emotional and cognitive resonance, a way for individual minds to reflect collective human experience.
In that neural dialogue between creator and viewer, art becomes not just seen but felt in the deepest sense.
Top Stories Today
- Study finds intermittent fasting helps maintain weight loss for at least a year
- Sudan’s people subject to ‘relentless’ drone strikes in El Obeid
- Pope Leo XIV shines spotlight on Mediterranean migration crisis
- Busia school named among global finalists for 2026 education prize
- DP Kindiki hails cooperatives as key to Kenya’s economic transformation
- SHA seeks Treasury funds to clear NHIF claims above Sh10 million
`;
}
return “;
}
function commentActionsMarkup(comment, canComment) {
const likeLabel = comment.liked_by_me ? ‘Liked’ : ‘Like’;
const likeCount = Number(comment.like_count || 0) > 0
? “
: ”;
const likeButton = canComment && comment.status === ‘approved’
? “
: “;
const replyButton = canComment && comment.status === ‘approved’
? “
: ”;
return `
`;
}
function commentMarkup(comment, canComment, isReply = false) {
const pendingBadge = comment.status && comment.status !== ‘approved’
? “
: ”;
const edited = comment.is_edited
? “
: ”;
const repliesHtml = Array.isArray(comment.replies) && comment.replies.length
? `
`
: “;
return `
`;
}
function replyFormMarkup(commentId) {
return `
`;
}
function setNotice(widget, message, type = ‘info’) {
const notice = widget.querySelector(‘[data-role=”notice”]’);
if (!notice) return;
if (!message) {
notice.hidden = true;
notice.textContent = ”;
notice.classList.remove(‘is-error’);
return;
}
notice.hidden = false;
notice.textContent = message;
notice.classList.toggle(‘is-error’, type === ‘error’);
}
function setCount(widget, total) {
const count = widget.querySelector(‘[data-role=”count”]’);
if (!count) return;
const num = Number(total || 0);
count.textContent = num === 1 ? ‘1 comment’ : `${num} comments`;
}
function openReplyBox(widget, commentId) {
widget.querySelectorAll(‘[data-role=”reply-box”]’).forEach(box => {
box.hidden = true;
box.innerHTML = ”;
});
const targetItem = widget.querySelector(`.ev-comments__item[data-comment-id=”${commentId}”]`);
if (!targetItem) return;
const replyBox = targetItem.querySelector(‘[data-role=”reply-box”]’);
if (!replyBox) return;
replyBox.hidden = false;
replyBox.innerHTML = replyFormMarkup(commentId);
const textarea = replyBox.querySelector(‘textarea’);
if (textarea) textarea.focus();
}
function closeReplyBox(container) {
if (!container) return;
container.hidden = true;
container.innerHTML = ”;
}
async function initCommentsWidget(widget) {
const state = {
articleId: Number(widget.dataset.articleId),
loadUrl: widget.dataset.loadUrl,
storeUrl: widget.dataset.storeUrl,
commentsBaseUrl: widget.dataset.commentsBaseUrl,
canComment: widget.dataset.canComment === ‘1’,
page: 1,
perPage: 10,
sort: ‘newest’,
total: 0,
hasMore: false,
busy: false
};
const list = widget.querySelector(‘[data-role=”list”]’);
const loading = widget.querySelector(‘[data-role=”loading”]’);
const empty = widget.querySelector(‘[data-role=”empty”]’);
const loadMoreBtn = widget.querySelector(‘[data-role=”load-more”]’);
const sortSelect = widget.querySelector(‘[data-role=”sort”]’);
const composerForm = widget.querySelector(‘[data-role=”composer-form”]’);
async function loadComments(reset = true) {
if (state.busy) return;
state.busy = true;
setNotice(widget, ”);
loading.hidden = false;
if (reset) {
state.page = 1;
list.innerHTML = ”;
empty.hidden = true;
}
try {
const url = new URL(state.loadUrl, window.location.origin);
url.searchParams.set(‘page’, state.page);
url.searchParams.set(‘per_page’, state.perPage);
url.searchParams.set(‘sort’, state.sort);
const response = await requestJson(url.toString(), {
method: ‘GET’,
headers: {
‘Accept’: ‘application/json’,
‘X-Requested-With’: ‘XMLHttpRequest’
}
});
const items = Array.isArray(response.data) ? response.data : [];
const meta = response.meta || {};
state.total = Number(meta.total || 0);
state.hasMore = !!meta.has_more;
setCount(widget, state.total);
if (reset) {
list.innerHTML = ”;
}
if (!items.length && reset) {
empty.hidden = false;
} else {
empty.hidden = true;
list.insertAdjacentHTML(
‘beforeend’,
items.map(item => commentMarkup(item, state.canComment, false)).join(”)
);
}
loadMoreBtn.hidden = !state.hasMore;
} catch (error) {
if (!list.children.length) {
empty.hidden = false;
empty.textContent = ‘Unable to load comments right now.’;
}
setNotice(widget, error.message || ‘Unable to load comments.’, ‘error’);
} finally {
loading.hidden = true;
state.busy = false;
}
}
async function submitTopLevelComment(form) {
const textarea = form.querySelector(‘textarea[name=”content”]’);
const button = form.querySelector(‘[data-role=”submit-comment”]’);
if (!textarea) return;
const content = textarea.value.trim();
if (!content) return;
const originalText = button ? button.textContent : ”;
try {
if (button) {
button.disabled = true;
button.textContent = ‘Posting…’;
}
const response = await requestJson(state.storeUrl, {
method: ‘POST’,
headers: buildJsonHeaders(),
body: JSON.stringify({
article_id: state.articleId,
content: content,
source_url: window.location.href
})
});
textarea.value = ”;
if (response?.data) {
list.insertAdjacentHTML(
‘afterbegin’,
commentMarkup(response.data, state.canComment, false)
);
empty.hidden = true;
if ((response.data.status || ”) === ‘approved’) {
state.total += 1;
setCount(widget, state.total);
}
}
setNotice(widget, response.message || ‘Comment posted successfully.’);
} catch (error) {
setNotice(widget, error.message || ‘Unable to post comment.’, ‘error’);
} finally {
if (button) {
button.disabled = false;
button.textContent = originalText || ‘Post comment’;
}
}
}
async function submitReply(form) {
const commentId = Number(form.dataset.commentId || 0);
const textarea = form.querySelector(‘textarea[name=”content”]’);
const button = form.querySelector(‘.ev-comments__reply-submit’);
if (!commentId || !textarea) return;
const content = textarea.value.trim();
if (!content) return;
const originalText = button ? button.textContent : ”;
try {
if (button) {
button.disabled = true;
button.textContent = ‘Posting…’;
}
const response = await requestJson(`${state.commentsBaseUrl}/${commentId}/reply`, {
method: ‘POST’,
headers: buildJsonHeaders(),
body: JSON.stringify({
article_id: state.articleId,
content: content,
source_url: window.location.href
})
});
if (response?.data) {
const parentItem = widget.querySelector(`.ev-comments__item[data-comment-id=”${commentId}”]`);
if (parentItem) {
const repliesWrap = parentItem.querySelector(‘.ev-comments__replies’);
if (repliesWrap) {
repliesWrap.insertAdjacentHTML(
‘beforeend’,
commentMarkup(response.data, state.canComment, true)
);
}
}
}
closeReplyBox(form.closest(‘[data-role=”reply-box”]’));
setNotice(widget, response.message || ‘Reply posted successfully.’);
} catch (error) {
setNotice(widget, error.message || ‘Unable to post reply.’, ‘error’);
} finally {
if (button) {
button.disabled = false;
button.textContent = originalText || ‘Post reply’;
}
}
}
async function toggleLike(button) {
const commentId = Number(button.dataset.commentId || 0);
if (!commentId) return;
const originalHtml = button.innerHTML;
try {
button.disabled = true;
button.innerHTML = ‘Working…’;
const response = await requestJson(`${state.commentsBaseUrl}/${commentId}/like`, {
method: ‘POST’,
headers: buildJsonHeaders(),
body: JSON.stringify({})
});
const liked = !!response?.data?.liked;
const likeCount = Number(response?.data?.like_count || 0);
button.classList.toggle(‘is-liked’, liked);
button.innerHTML = `${liked ? ‘Liked’ : ‘Like’} ${likeCount > 0 ? “ : ”}`;
} catch (error) {
button.innerHTML = originalHtml;
setNotice(widget, error.message || ‘Unable to update like.’, ‘error’);
} finally {
button.disabled = false;
}
}
if (composerForm) {
composerForm.addEventListener(‘submit’, function (e) {
e.preventDefault();
submitTopLevelComment(composerForm);
});
}
if (sortSelect) {
sortSelect.addEventListener(‘change’, function () {
state.sort = this.value || ‘newest’;
loadComments(true);
});
}
if (loadMoreBtn) {
loadMoreBtn.addEventListener(‘click’, function () {
if (state.busy || !state.hasMore) return;
state.page += 1;
loadComments(false);
});
}
widget.addEventListener(‘click’, function (e) {
const likeBtn = e.target.closest(‘[data-action=”toggle-like”]’);
if (likeBtn) {
e.preventDefault();
toggleLike(likeBtn);
return;
}
const replyBtn = e.target.closest(‘[data-action=”toggle-reply”]’);
if (replyBtn) {
e.preventDefault();
openReplyBox(widget, Number(replyBtn.dataset.commentId || 0));
return;
}
const cancelReplyBtn = e.target.closest(‘[data-action=”cancel-reply”]’);
if (cancelReplyBtn) {
e.preventDefault();
closeReplyBox(cancelReplyBtn.closest(‘[data-role=”reply-box”]’));
}
});
widget.addEventListener(‘submit’, function (e) {
const replyForm = e.target.closest(‘.ev-comments__reply-form’);
if (replyForm) {
e.preventDefault();
submitReply(replyForm);
}
});
loadComments(true);
}
document.addEventListener(‘DOMContentLoaded’, function () {
document.querySelectorAll(‘.ev-comments’).forEach(initCommentsWidget);
});
})();
Trending
Sudan’s people subject to ‘relentless’ drone strikes in El ObeidSudan
|UN News
|26 minutes ago
CS Mbadi defends government’s Safaricom share sale as lawful and transparentNews
|Rachael Mutabasi
|6 hours ago
Spain end 16-year World Cup knockout wait with commanding victory over AustriaNews
|Erick Kariuki
|1 day ago
UN warns of spiralling hunger crisis in northern Nigeria as over 17 million face acute food insecurityAfrica
|Bashir Mbuthia
|1 day ago
Egypt end 92-year wait to reach World Cup last 16News
|Erick Kariuki
|11 hours ago
Gor Mahia set for CECAFA Kagame Cup return after league title triumphSports
|Erick Kariuki
|23 hours ago
60 more Kenyans arrive home from South Africa as government steps up evacuationsNews
|Mary Wambui
|7 hours ago
CAF opens bidding for 2028, 2032 and 2036 AFCON tournamentsNews
|Erick Kariuki
|9 hours ago
Supreme Court rejects Arshad Sharif widow’s bid to compel prosecution, upholds Sh10 million awardNews
|Carolyne Kubwa
|1 day ago
National Youth Council elections postponed indefinitely over compliance concernsNews
|Rachael Mutabasi
|1 day ago
