Phranakorn Rajabhat University Library

Color: The professional's guide: Understanding, appreciating and mastering color in art and design /

Triedman, Karen

Color: The professional's guide: Understanding, appreciating and mastering color in art and design / Color: The professional's guide Karen Triedman, author - Ohio : North Light Books, 2015 - 256 p : ill ; 26 cm.

Includes bibliographical references (pages 248-253) and index.

Color in nature page 8-21 - - Color and light perception page 22-33 - - Theoretical color page 34-51 - - Color organization page 52-59 - - Pigments and dyes: Chemistry page 60-75 - - Color awareness and response page 76-89 - - Cultural response, symbolism and meaning page 90-99 - - Color, a historical perspective page 100-105 - - Trends in color page 106-117 - - The history of color in painting page 118-141 - - Color in photography page 142-151 - - Color and the written word: Roots and origins page 152-161 - - Design elements and principles page 162-169 - - Color in print page 170-187 - - Color in branding and identity page 188-195 - - Color in three-dimensional design page 196-201 - - Experiential design page 202-215 - - Color consulting: The process page 216-225 - - Color in film animation page 226-243

9781440338984 2340


COLOR IN DESIGN
COLOR IN ART

NK 1548 / T74C 2015

มหาวิทยาลัยศรีปทุม (กทม.)
2410/2 ถ.พหลโยธิน เขตจตุจักร กรุงเทพฯ 10900
Tel : 02-579-1111, 02-561-2222
มหาวิทยาลัยศรีปทุม (ชลบุรี)
79 หมู่ 1 ถ.บางนา-ตราด ต.คลองตำหรุ อ.เมือง จ.ชลบุรี 20000
Tel : 038-146-123
มหาวิทยาลัยศรีปทุม (ขอนแก่น)
182/12 หมู่ 4 ถ.ศรีจันทร์ ต.ในเมือง อ.เมือง จ.ขอนแก่น 40000
Tel : 043-224-111


 

$(document).ready(function() { // Basic detection of search var searchBox = $('#transl1'); // This is standard OPAC search input id ?? // Actually standard is 'q' or 'idx'. // We want to trigger when the user sees results. // Usually we check if we are on search results page. if ($('body').hasClass('opac-results')) { var params = new URLSearchParams(window.location.search); var query = params.get('q'); if (query) { // Show Loading var container = $('
'); container.append('

✨ AI Recommendations

'); container.append('
Searching with AI...
'); // Prepend to main content // Selector depends on theme. 'div.maincontent' or '#opac-main' $('#userresults').prepend(container); $.ajax({ url: '/api/v1/contrib/aisearch/search?q=' + encodeURIComponent(query), method: 'GET', success: function(data) { container.find('.spinner').remove(); if (data && data.length > 0) { var ul = ''; container.append(ul); } else { container.append('

No AI recommendations found.

'); } }, error: function() { container.find('.spinner').remove(); container.append('

Error loading AI recommendations.

'); } }); } } });