Skip to main content

The Four Trends for 2013

The Four Trends for 2013

1. Greyscale With Bright Accents
2013 Color Trends on the Web
This color scheme has greatly increased in popularity of late, and it’s plain to see why: with only a couple of bright hues to draw the eye, it’s easy to differentiate important information and interactive elements. And the simplicity and control this gives to the design makes for a polished result with a great user experience.
In this site’s design, the turquoise and coral colors are alternated throughout to define sections, images, and rollovers, creating a clean and intuitive design that directs attention primarily through its bold and effective color scheme.
2. Muted Pastels
2013 Color Trends on the Web
On the other end of the color trend spectrum lays the new wave of designs that feature a mix of soft, neutral tones and light pastels. This trend is all about creating an atmosphere that feels soft and friendly, and is often seen with the rise in cute, cartoony vector illustration, and hand-drawn, organic typefaces.
This example is a perfect intersection between the muted color palette and organic typography that are such a natural match. There’s an unusually large number of different colors being used, but because they’re all such soft tones the effect adds subtle differentiation between topics without becoming visually overwhelming.
3. Neons and Brights
2013 Color Trends on the Web
Although neon has been a big trend in fashion and interior design for a while now, it’s still a fresh and interesting look for web design. It’s just one part of the 80s revival that’s being incorporated into all different kinds of design of late.
Neon colors look great when combined with each other, as sites like this clearly demonstrate. They can also be mixed in with other brights for a look that’s just as fun but that has less of a specific visual reference.
4. Color Blocking
2013 Color Trends on the Web
Now for the trend that’s being combined with every other color trend. Color blocking also traces its roots back to fashion design, and it’s as versatile as it is functional. It’s not really about using any colors in particular; the point is to use crisp fields of color to define categories, sections, or single elements.
A part of the larger movement towards flat vector designs, color blocking is a strong look that can often stand in for illustrations or other graphic treatments, so it’s a great choice for minimalist designs.

Use Color Tools to Tweak the Trends

If you’re hesitant about jumping into some of these new trends, you’ll likely benefit from one of the tools below, which can help you formulate a consistent and workable color palette while still allowing you to play around and experiment with different hues.
Color Explorer offers up a comprehensive set of tools, such as color extraction, matching, and conversion, so it’s easy to create interesting palettes that are perfectly balanced and web safe to boot.
Use the Color Matching Tool to alter RGB ratios, hue, saturation, and lightness, choosing different combination algorithms like Analogue or Spit-Complementary colors to view a selection of harmonized variations. This tool is the perfect resource if you’re going for a look that uses a multitude of muted pastels.
2013 Color Trends on the Web
It’s always a great look when the color palette of a site is carried through to the photography. Striking effects can be achieved by colorizing images, but for a less-stylized option, it’s important to be able to find imagery with the perfect colors for your project.
Use this tool as a shortcut to searching stock images by color and keyword, or use TinEye for the same functionality, but with images pulled from the creative commons. They’re both great resources for finding imagery that matches perfectly with a small selection of bright or neon colors.
2013 Color Trends on the Web
One of the easiest ways to make any site look fresh and up-to-date is to make sure it’s on trend with its color scheme. So don’t hesitate to play around with new ideas; the color palettes of this year are based on solid principles that will look good and stand up to subtle modifications for as long as they’re in use.

Popular posts from this blog

Text Ideas in Design - Turn Typography into exciting designs!

Text Ideas in Design  - Turn Typography into exciting designs! TEXT THAT CREATES BACKGROUNDS   Tiling, gradients,  bokeh  and text design interlink to form an interesting background. Bokeh is the photographic blur effect to get a soft, out-of-focus look. Extremely effective and relevant use of handwritten text to form a background and an image. The ad for Australia Post says “If you really want to touch someone, send them a letter.”  The visual shows this literally – a letter hugging a girl. EXTRA-LARGE HEADLINES Looks like designers are having themselves a field day with big, bold headlines.  The kind that stop you in your tracks and make you read. This site has the outsized headline in lower case and the content in all caps in a smart yet simple design that optimizes the use of color and type. Courtesy:  LemonDesign    Here every word begins with the letter ‘A’ which takes center-stage in no uncertain terms.  ...

Web Design Ideas

ooking for something to add a little punch to your website design and make it stand apart?  We bring you some ideas to trigger your creative thoughts and entice the user into your site. Use single page design - keep it simple Create unusual icons  – let your imagination come into play Use attractive navigation  – try out something different Draw on circular elements  to attract the viewer - soften hard lines and angles Use good-looking textures Use CSS3 to create animations, transforms and transitions  –  a great alternative to Flash Try out unusual designs for forms Single Page Design Click here for some great ideas on single page designs! Just Dot This scrolling single-page website uses a simple concept – ideas coming to life on a blackboard, with all the changes, scribbles and erasing that refine the process of ideation. The white and red chalk sketches and typography highlight the site’s promise of “Brilliant ideas come to life”. The J...

Dynamic Grid Output Script Using PHP + MySQL Array Data

<?php // Include database connection include_once  'connect_to_mysql.php' ; // SQL query to interact with info from our database $sql  =  mysql_query ( "SELECT id, member_name FROM member_table ORDER BY id DESC LIMIT 15" );  $i  =  0 ; // Establish the output variable $dyn_table  =  '<table border="1" cellpadding="10">' ; while( $row  =  mysql_fetch_array ( $sql )){          $id  =  $row [ "id" ];      $member_name  =  $row [ "member_name" ];         if ( $i  %  3  ==  0 ) {  // if $i is divisible by our target number (in this case "3")          $dyn...