Wszystkie wpisy, których autorem jest admin

Design Principles for Developers: Processes and CSS Tips for Better Web Design

Post pobrano z: Design Principles for Developers: Processes and CSS Tips for Better Web Design

It is technically true that anyone can cook. But there’s a difference between actually knowing how to prepare a delicious meal and hoping for the best as you throw a few ingredients in a pot. Just like web development, you might know the ingredients—<span>, background-color, .heading-1—but not everyone knows how to turn those ingredients into a beautiful, easy-to-use website.

Whenever you use HTML and CSS, you are designing—giving form and structure to content so it can be understood by someone else. People have been designing for centuries and have developed principles along the way that are applicable to digital interfaces today. These principles manifest in three key areas: how words are displayed (typography), how content is arranged (spacing), and how personalty is added (color). Let’s discover how to use each of these web design ingredients through the mindset of a developer with CSS properties and guidelines to take the guesswork out of web design.

Table of Contents

Typography

Websites that are easy to read don’t happen by mistake. In fact, Taimur Abdaal wrote an entire article on the topic that’s chock-full of advice for developers working with type. We’re going to focus specifically on two fundamental principles of design that can help you display words in a more visually pleasing and easy-to-read way: repetition and hierarchy.

Use repetition for consistency and maintainability

Repetition comes fairly naturally on the web thanks to the importance of reusability in software. For example, CSS classes allow you to define a particular style for text and then reuse that style across the site. This results in repeating, consistent text styles for similar content which helps users navigate the site.

If, for example, you are working on styles for a new paragraph, first consider if there is existing content that has a similar style and try to use the same CSS class. If not, you can create a new class with a generic name that can be repeated elsewhere in your site. Think .paragraph--emphasize as opposed to .footer__paragraph--emphasize or .heading-1 as opposed to .hero__site-title. The first examples can be used across your site as opposed to the second which are scoped to specific components. You can even add a prefix like text- to indicate that the class is used specifically for text styles. This method will reduce the CSS file size and complexity while making it much easier to update global styles in the future.

Left: The black text is similar but uses a slightly different font size and line height. Right: The black text uses the same styles and therefore can use the same CSS class. Reducing the amount of CSS needed and adding repetition and consistency.

In design, there are endless ways to experiment with styles. Designers can sometimes go a little crazy with their font styles by creating numerous slight variations of similar styles. However, in code, it’s valuable to restrict text styles to a minimum. Developers should urge designers to combine similar styles in order to reduce code weight and increase reusability and consistency.

These headings look very similar but are slightly different and would require three separate CSS classes to style them. They could probably be combined into one and styled with a single class.

Hierarchy provides a clear visual order to content

Hierarchy is something you really only notice when it’s not there. In typography, hierarchy refers to the visual difference between various pieces of text. It’s the distinction between headings, paragraphs, links, and other text styles. This distinction is made by choosing different fonts, colors, size, capitalization, and other properties for each type of text content. Good hierarchy makes complex information easier to digest and guides users through your content.

Left: Poor hierarchy. There’s not much differentiation in the size or color of the text to help users digest the content. Right: Better hierarchy that uses more variety in font size, color, and spacing to help users quickly navigate the content.

Out of the box, HTML provides some hierarchy (like how the font size of headings gets smaller as you go from <h1> to <h6>), but CSS opens the door for even more creativity. By giving <h1> tags an even larger font size, you can quickly establish greater difference in size between heading levels—and therefore more hierarchy. To create more variety, you can also change the color, text-align, and text-transform properties.

A comparison of the way HTML headings look without styles versus adding more contrast with CSS.

A note on choosing fonts

With typography, we need to make sure it is as easy to read as possible. The greatest overall factor in readability is the font you choose—which is a huge topic. There are many factors that determine how „readable” a font is. Some fonts are made specifically to be used as headings or short lines of text; these are called „display” fonts, and they often have more personality than fonts designed to be used for text. Unique flourishes and quirks make display fonts harder to read at small sizes and when part of a large paragraph. As a rule of thumb, use a more straightforward font for text and only use display fonts for headings.

Left: Examples of display fonts that work better as headings. Right: Examples of text fonts that are more readable and can be used for headings, paragraphs, and any other text that needs to be easy to read.

If you’re in a pinch and need a readable font, try Google Fonts. Add a paragraph of text to the preview field and size it roughly how it will display on your website. You can then narrow down your results to serif or sans-serif and scan the list of fonts for one that is easy to read. Roboto, Noto Sans, Merriweather, and PT Serif are all very readable options.

CSS properties for better readability

  • The main paragraph font-size should be between 16pxand 18px (1em and 1.25em) depending on the font you choose.
  • Manually set line-height (the vertical space between two lines of text) to make your text less cramped and easier to read. Start with line-height: 1.25 (that is 1.25 times the font-size) for headings and at least 1.5 for paragraphs (but no more than 1.9) and adjust from there. The longer the line of text, the larger the line-height should be. To keep your text flexible, avoid adding a unit to your line-height. Without a unit the line-height you set will be proportional to your font-size. For example, line-height: 1.5 and font-size: 18px would give you a line height of 27 pixels. If you changed your font size to font-size: 16px on smaller screens, the computed line height would then change to 24 pixels automatically.
Left: line-height is 1.1 for the heading and 1.2 for the paragraph, which is roughly the default setting. Right: line-height is 1.25 for the headings and 1.5 for the paragraph.
  • Pay attention to how many characters are in a line of text and aim for 45 and 75 characters long (including punctuation and spaces). Doing so reduces reading fatigue for your users by limiting the eye and head movement needed to follow a line of text. With the variable nature of the web, it’s impossible to completely control line length, but you can use max-width values and breakpoints to prevent lines of text from getting too long. Generally speaking, the shorter the line of text, the faster it will be to scan for quick reading. And don’t worry too much about counting the characters in every line. Once you do it a few times, you’ll develop a sense for what looks right.
Top: line length of around 125 characters. Bottom: line length of around 60 characters.

Spacing

After looking at typography, you can take a step back and examine the layout, or spacing, of your content. Movement and proximity are two design principles that relate to spacing.

Movement is about content flow

Movement refers to how your eye moves through the page or the flow of the page. You can use movement to direct a user’s eye in order to tell a story, point to a main action item, or encourage them to scroll. This is done by structuring the content within individual components and then arranging those components to form the layout of the page. By paying attention to how your eye moves through content, you can help users know where to look as they scan the page.

Unlike books, which tend to have very linear structure, websites can be more creative with their layout—in literally endless ways. It is important to make sure you are intentional with how you layout content and do so in a way which guides users through your content as easily as possible.

Three potential ways to arrange a heading, image, and button.

Consider these three examples above. Which is the easiest to follow? The arrangement on the left draws your eye off the screen to the left due to how the image is positioned which makes it hard to find the button. In the center option, it’s easy to skip over the headline because the image is too large in comparison. On the right, the heading draws your attention first and the image is composed so that it points to the main action item—the button.

White space is a helpful tool for creating strong movement, but it’s easy to use too much or too little. Think about how you are using it to direct the user’s eye and divide your content. When used well, users won’t notice the whitespace itself but will be able to better focus on the content you are presenting. For example, you can use whitespace to separate content (instead of a colored box) which results in a less cluttered layout.

Left: Using a graphic element to separate content and aligning images in the center. Right: Using whitespace to separate content and aligning images on the left to let the whitespace flow better around groups of related content and create a cleaner layout.

Proximity establishes relationships

When objects are closer together, they are perceived as being related. By controlling spacing around elements, you can imply relationships between them. It can be helpful to create a system for spacing to help build consistency through repetition and avoid the use of random numbers. This system is based off the default browser font size (1rem or 16px) and uses distinct values that cover most scenarios:

  • 0.25rem (4px)
  • 0.5rem (8px)
  • 1rem (16px)
  • 2rem (32px)
  • 4rem (64px)

You can use Sass or CSS variables so that the values are kept consistent across the project. A system might look like this—but use whatever you’re comfortable with because naming things is hard:

  • $space-sm
  • $space-med
  • $space-lg
  • $space-xl
  • $space-xxl
Left: A component with uneven spacing between elements. Right: A component that uses consistent spacing.

Color conveys personality and calls attention

Color greatly affects a website’s personality. When used well, it gives pages life and emotion; used poorly, it can distract from the content, or worse, make it inaccessible. Color goes hand in hand with most design principles. It can be used to create movement by directing users’ eyes and can be used to create emphasis by calling attention to the most important action items.

A note on choosing colors

With color, it can be hard to know where to start. To help, you can use a four-step process to guide your color choices and build a color palette for the site.

Step 1: Know your mood

You have to know the mood or attitude of your site and brand before choosing colors. Look at your content and decide what you are trying to communicate. Is it funny, informative, retro, loud, somber? Typically, you can boil down the mood of your site to a few adjectives. For example, you might summarize The North Face as adventurous and rugged while Apple would be minimalistic and beautiful.

Step 2: Find your main color

With your mood in mind, try to visualize a color that represents it. Start with the color’s saturation (how intense the color is) and brightness (how close the color is to white or black). If your mood is upbeat or flashy, a lighter (more saturated) color is probably best. If your mood is serious or reserved, a darker (less saturated) color is better.

Next, choose a hue. Hue refers to what most people think of as colors—where does is fall on the rotation of the color wheel? The hue of a color is what gives it the most meaning. People tend to associate hues with certain ideas. For instance, red is often associated with power or danger and green relates to money or nature. It can be helpful to look at similar websites or brands to see what colors they use—although you don’t need to follow their lead. Don’t be afraid to experiment!

Color wheel showing saturation and brightness versus hue.
Step 3: Add supporting colors

Sometimes, two or three main colors are needed, but this is not necessary. Think about the colors of different brands. Some use a single color, and others have a main color and one or two that support it. Coca-Cola uses its distinct red. IKEA is mostly blue with some yellow. Tide is orange with some blue and yellow. Depending on your site’s mood, you might need a few colors. Try using a tool like Adobe Color or Coolors), both of which allow you to add a main color and then try different color relationships, like complementary or monochromatic, to quickly see if any work well.

Step 4: Expand your palette

Now that you’ve narrowed things down and found your main color(s), it’s time to expand your scope with a palette that gives your project versatility and constraint—here’s a methodology I’ve found helpful. Tints and shades are the trick here. Tints are made by mixing your main color(s) with white, and shades are made by mixing with black. You can quickly create an organized system with Sass color functions:

$main-color:          #9AE799;

$main-color-lightest: lighten($main-color, 20%);
$main-color-lighter:  lighten($main-color, 15%);
$main-color-light:    lighten($main-color, 10%);

$main-color-dark:     darken($main-color, 40%);
$main-color-darker:   darken($main-color, 50%);
$main-color-darkest:  darken($main-color, 60%);
A palette of color options created with Sass color functions. Make sure to use percent values for the functions that create distinct colors—not too similar to the main color.

To round out your palette, you’ll need a few more colors, like a white and black. Try creating a „rich black” using a dark, almost black shade of your main color and, on the other end of the spectrum, pick a few light grays that are tinted with your main color. Tinting the white and black adds a little more personality to your page and helps create a cohesive look and feel.

Top: Basic white, gray, and black. Bottom: Tinted white, grays, and black to match the main color.

Last but not least, if you are working on an interactive product, you should add colors for success, warning, and error states. Typically a green, yellow, and red work for these but consider how you can adjust the hue to make them fit better with your palette. For example, if your mood is friendly and your base color is green, you might want to desaturate the error state colors to make the red feel less negative.

You can do this with the mix Sass color function by giving it your base color, the default error color, and the percentage of base color that you want to mix in with the error color. Adding desaturate functions helps tone down the colors:

$success: mix($base-color, desaturate(green, 50%), 50%);
$warning: mix($base-color, desaturate(yellow, 30%), 5%);
$error:   mix($base-color, desaturate(red, 50%), 20%);
Top: Default colors for success, warning, and error states. Bottom: Tinted and desaturated colors for the success, warning and error states.

When it comes to the web, there’s one color principle that you have to pay extra attention to: contrast. That’s what we’ll cover next.

Contrast

Color contrast—the difference in saturation, brightness, and hue between two colors—is an important design principle for ensuring the web is accessible to those with low vision or color blindness. By ensuring there is enough contrast between your text and whatever is behind it on your site will be more accessible for all sighted users. When looking at accessibility, be sure to follow the color contrast guidelines provided by W3C’s Web Content Accessibility Guidelines (WCAG). There are many tools that can help you follow these guidelines, including the inspect panel in Chrome’s dev tools.

By clicking on the color property in the Chrome Inspect tool, you can see the contrast ratio and whether it is passing.

Now, it’s time to put these principles to practice! You can use these processes and CSS tips to help take the guesswork out of design and create better solutions. Start with what you are familiar with, and eventually, the design principles mentioned here will become second nature.

If you’re looking for even more practical tips, Adam Wathan and Steve Schoger wrote about some of their favorites.

The post Design Principles for Developers: Processes and CSS Tips for Better Web Design appeared first on CSS-Tricks.

Moving Text on a Curved Path

Post pobrano z: Moving Text on a Curved Path

There was a fun article in The New York Times the other day describing the fancy way Elizabeth Warren and her staff let people take a selfie with Warren. But… the pictures aren’t actually selfies because they are taken by someone else. The article has his hilarious line of text that wiggles by on a curved line as you scroll down the page.

Let’s look at how they did it.

Movie:

The curved line is drawn in SVG as a <path>, and the <text> is set upon it by a <textPath>:

<svg width="100%" height="160px" viewBox="0 0 1098.72 89.55">
    <path id="curve" fill="transparent" d="M0.17,0.23c0,0,105.85,77.7,276.46,73.2s243.8-61.37,408.77-54.05c172.09,7.64,213.4,92.34,413.28,64.19"></path>
    <text width="100%" style="transform:translate3d(0,0,0);">
        <textPath style="transform:translate3d(0,0,0);" alignment-baseline="top" xlink:href="#curve">*The pictures are not technically selfies.</textPath>
    </text>
</svg>

The movement trick happens by adjusting the startOffset attribute of the textPath element.

I’m not 100% sure how they did it, but we can do some quick hacky math by watching the scroll position of the page and setting that attribute in a way that makes it move about as fast and far as we want.

const textPath = document.querySelector("#text-path");

const h = document.documentElement, 
      b = document.body,
      st = 'scrollTop',
      sh = 'scrollHeight';

document.addEventListener("scroll", e => {
  let percent = (h[st]||b[st]) / ((h[sh]||b[sh]) - h.clientHeight) * 100;
  textPath.setAttribute("startOffset", (-percent * 40) + 1200)
});

Here’s a demo:

See the Pen
Selfie Crawl
by Chris Coyier (@chriscoyier)
on CodePen.

Text on a curved line is a cool design look for any number of reasons! It just isn’t seen that much on the web, so when it is used, it stands out.

See the Pen
CodePen Challenge: Hearthstone Card
by wheatup (@wheatup)
on CodePen.

The post Moving Text on a Curved Path appeared first on CSS-Tricks.

Moving Text on a Curved Path

Post pobrano z: Moving Text on a Curved Path

There was a fun article in The New York Times the other day describing the fancy way Elizabeth Warren and her staff let people take a selfie with Warren. But… the pictures aren’t actually selfies because they are taken by someone else. The article has his hilarious line of text that wiggles by on a curved line as you scroll down the page.

Let’s look at how they did it.

Movie:

The curved line is drawn in SVG as a <path>, and the <text> is set upon it by a <textPath>:

<svg width="100%" height="160px" viewBox="0 0 1098.72 89.55">
    <path id="curve" fill="transparent" d="M0.17,0.23c0,0,105.85,77.7,276.46,73.2s243.8-61.37,408.77-54.05c172.09,7.64,213.4,92.34,413.28,64.19"></path>
    <text width="100%" style="transform:translate3d(0,0,0);">
        <textPath style="transform:translate3d(0,0,0);" alignment-baseline="top" xlink:href="#curve">*The pictures are not technically selfies.</textPath>
    </text>
</svg>

The movement trick happens by adjusting the startOffset attribute of the textPath element.

I’m not 100% sure how they did it, but we can do some quick hacky math by watching the scroll position of the page and setting that attribute in a way that makes it move about as fast and far as we want.

const textPath = document.querySelector("#text-path");

const h = document.documentElement, 
      b = document.body,
      st = 'scrollTop',
      sh = 'scrollHeight';

document.addEventListener("scroll", e => {
  let percent = (h[st]||b[st]) / ((h[sh]||b[sh]) - h.clientHeight) * 100;
  textPath.setAttribute("startOffset", (-percent * 40) + 1200)
});

Here’s a demo:

See the Pen
Selfie Crawl
by Chris Coyier (@chriscoyier)
on CodePen.

Text on a curved line is a cool design look for any number of reasons! It just isn’t seen that much on the web, so when it is used, it stands out.

See the Pen
CodePen Challenge: Hearthstone Card
by wheatup (@wheatup)
on CodePen.

The post Moving Text on a Curved Path appeared first on CSS-Tricks.

How to Create a 'Stranger Things’ Inspired Text Effect in Adobe Photoshop

Post pobrano z: How to Create a 'Stranger Things’ Inspired Text Effect in Adobe Photoshop

Final product image
What You’ll Be Creating

This very quick tutorial will show you an easy way to create a text effect inspired by the 'Stranger Things’ series, using only layer styles and some simple adjustments. Let’s get started!

This text effect was inspired by the many Layer Styles available on Envato Market. You can get a very similar style named Stranger Twins, which is available to download and use in Adobe Photoshop.

Tutorial Assets

The following assets were used during the production of this tutorial:

1. Create the Background and the Text

Step 1

Create a new 1280 x 720px document, and fill the Background with the color #0c0101.

Create the Background

Step 2

Create the text in White using the font Indira K.

The original font used is Benguiat, but this is a free alternative that you can use instead.

Set the Size to a value around 141 pt, and check the Faux Bold and All Caps icons in the Character panel (Window > Character).

Create the Text

Step 3

Change the Tracking value to -100.

Change the Tracking

Step 4

Change the Vertical Scale to 115. This will stretch the text vertically.

Change the Vertical Scale

2. Adjust the Bigger Letters

Step 1

Select (highlight) the first letter of your text, and change its Size to a value around 212 pt.

Enlarge the First Letter

Step 2

Next, you’ll need to change the Baseline Shift value in order to move the big letter downwards, until its top is on the same level as the tops of the rest of the letters.

To do that, you can either enter numerical values, or scrub the Set the baseline shift icon to the left.

Set the Baseline Shift

Step 3

Do the same for the last letter of the first line of text, or whatever other letters you like.

Adjust the Last Letter

3. Adjust the Kerning

Step 1

Place the text cursor between the first two letters you have, and change the Kerning to a value you think looks good.

Change the Kerning

Step 2

Depending on your text and the result you’re looking for, adjust the Kerning for the rest of the letters you have. Not all the letters should be adjusted, just the ones you think need that.

Change the Kerning

Step 3

Once you’re done, change the text layer’s Fill value to 0.

Change the Fill Value

4. Style the Text

Double-click the text layer to apply the following layer style:

Step 1

Add a Bevel and Emboss with these settings:

  • Style: Stroke Emboss
  • Depth: 220
  • Size: 3
  • Uncheck the Use Global Light box
  • Angle: 156
  • Altitude: 37
  • Gloss Contour: Cone – Inverted
  • Check the Anti-aliased box
  • Highlight Mode – Opacity: 35%
  • Shadow Mode – Opacity: 50%
Bevel and Emboss

Step 2

Add a Contour with these settings:

  • Contour: Cove – Deep
  • Check the Anti-aliased box.
Contour

Step 3

Add a Stroke with these settings:

  • Size: 3
  • Position: Inside
  • Color: #ce1725
Stroke

Step 4

Add an Inner Glow with these settings:

  • Opacity: 50%
  • Noise: 5%
  • Color: #ea0f0f
  • Size: 17
Inner Glow

Step 5

Add an Outer Glow with these settings:

  • Opacity: 50%
  • Noise: 5%
  • Color: #ea2314
  • Size: 12
  • Range: 60%
Outer Glow

Step 6

This will style the text. Right-click the styled text layer, and choose Copy Layer Style.

Copy Layer Style

5. Create the Rectangle Shapes

Step 1

Pick the Rounded Rectangle Tool, and set the Radius in the Options bar to 2Click-drag to create a rectangle above the text, with a Height value around 7px.

Then, click-drag to create more rectangles at the beginning and end of the second line of text, or anywhere else you’d like to add them. Just make sure to maintain the same Height for all the rectangles you create.

Create the Rectangles

Step 2

Change all the rectangle layers’ Fill value to 0.

Change the Fill Value

6. Style the Rectangles

Right-click any of the rectangle layers you have, and choose Paste Layer Style. This will apply the same layer style copied from the text layer.

After that, double-click the styled rectangle layer to adjust some of the values:

Step 1

Add a Bevel and Emboss with these settings:

  • Size: 2
Bevel and Emboss

Step 2

Add a Stroke with these settings:

  • Size: 2
  • Position: Outside
Stroke

Step 3

Add an Inner Glow with these settings:

  • Size: 5
Inner Glow

Step 4

Add an Outer Glow with these settings:

  • Size: 17
Outer Glow

Step 5

Right-click the styled rectangle layer, and choose Copy Layer Style.

Copy Layer Style

Step 6

Select the other rectangle layers you have, right-click any of them, and choose Paste Layer Style.

Paste Layer Style

Step 7

Place the text and rectangle layers in a group, and call it Text Effect.

Text Effect Group

7. Style the Group

Double-click the Text Effect group to apply the following layer style:

Step 1

Add a Gradient Overlay with these settings:

  • Check the Dither box
  • Blend Mode: Soft Light
  • Style: Reflected
  • Angle: 135
  • Create the Gradient fill using the colors #fbe7c2 to the left and #e69f99 to the right
Gradient Overlay 1

Step 2

Add another Gradient Overlay effect with these settings:

  • Check the Dither box
  • Blend Mode: Overlay
  • Style: Reflected
  • Angle: 135
  • Use the faucet 10 gradient fill
Gradient Overlay 2

Step 3

Add an Outer Glow with these settings:

  • Opacity: 20%
  • Color: #de1b22
  • Size: 34
  • Range: 60%
Outer Glow

This will enhance the effect.

Styled Group

8. Add Some Light Spots

Step 1

Set the Foreground Color to #451d08, and then create a new layer on top of all layers, call it Light, and change its Blend Mode to Color Dodge.

Light Layer

Step 2

Pick the Brush Tool, and choose a big, soft, round tip. Then start clicking over some letters to brighten them up.

You can change the tip’s size, and play around with the Opacity value in the Options bar to control the intensity of the light spots you’re adding.

Add the Light Spots

Step 3

Click the Create new fill or adjustment layer icon in the Layers panel, and choose Hue/Saturation.

HueSaturation Adjustment Layer

Step 4

Change the Saturation value to 35, and the Lightness to 15, or any other values you like.

Change the Values

9. Adjust the Coloring

Step 1

Add a Gradient adjustment layer on top of the Text Effect group.

Create the gradient fill using the colors #5c456e to the right, #b26b73 in the center, and #fda982 to the left. Change the Style to Reflected, the Angle to 155, and the Scale to 55%.

Gradient Adjustment Layer

Step 2

Change the Gradient layer’s Blend Mode to Color, and its Opacity to 35%.

Gradient Layer Settings

Congratulations! You’re Done

In this tutorial, we created the text and modified it using the different Character panel options and settings. Then we styled the text, created the rectangles, and styled them as well.

After that, we grouped all the layers and added one more layer style. Finally, we added some light spots and a gradient adjustment layer to modify the coloring of the final result.

Please feel free to leave your comments, suggestions, and outcomes below.

Final Result

How to Create a 'Stranger Things’ Inspired Text Effect in Adobe Photoshop

Post pobrano z: How to Create a 'Stranger Things’ Inspired Text Effect in Adobe Photoshop

Final product image
What You’ll Be Creating

This very quick tutorial will show you an easy way to create a text effect inspired by the 'Stranger Things’ series, using only layer styles and some simple adjustments. Let’s get started!

This text effect was inspired by the many Layer Styles available on Envato Market. You can get a very similar style named Stranger Twins, which is available to download and use in Adobe Photoshop.

Tutorial Assets

The following assets were used during the production of this tutorial:

1. Create the Background and the Text

Step 1

Create a new 1280 x 720px document, and fill the Background with the color #0c0101.

Create the Background

Step 2

Create the text in White using the font Indira K.

The original font used is Benguiat, but this is a free alternative that you can use instead.

Set the Size to a value around 141 pt, and check the Faux Bold and All Caps icons in the Character panel (Window > Character).

Create the Text

Step 3

Change the Tracking value to -100.

Change the Tracking

Step 4

Change the Vertical Scale to 115. This will stretch the text vertically.

Change the Vertical Scale

2. Adjust the Bigger Letters

Step 1

Select (highlight) the first letter of your text, and change its Size to a value around 212 pt.

Enlarge the First Letter

Step 2

Next, you’ll need to change the Baseline Shift value in order to move the big letter downwards, until its top is on the same level as the tops of the rest of the letters.

To do that, you can either enter numerical values, or scrub the Set the baseline shift icon to the left.

Set the Baseline Shift

Step 3

Do the same for the last letter of the first line of text, or whatever other letters you like.

Adjust the Last Letter

3. Adjust the Kerning

Step 1

Place the text cursor between the first two letters you have, and change the Kerning to a value you think looks good.

Change the Kerning

Step 2

Depending on your text and the result you’re looking for, adjust the Kerning for the rest of the letters you have. Not all the letters should be adjusted, just the ones you think need that.

Change the Kerning

Step 3

Once you’re done, change the text layer’s Fill value to 0.

Change the Fill Value

4. Style the Text

Double-click the text layer to apply the following layer style:

Step 1

Add a Bevel and Emboss with these settings:

  • Style: Stroke Emboss
  • Depth: 220
  • Size: 3
  • Uncheck the Use Global Light box
  • Angle: 156
  • Altitude: 37
  • Gloss Contour: Cone – Inverted
  • Check the Anti-aliased box
  • Highlight Mode – Opacity: 35%
  • Shadow Mode – Opacity: 50%
Bevel and Emboss

Step 2

Add a Contour with these settings:

  • Contour: Cove – Deep
  • Check the Anti-aliased box.
Contour

Step 3

Add a Stroke with these settings:

  • Size: 3
  • Position: Inside
  • Color: #ce1725
Stroke

Step 4

Add an Inner Glow with these settings:

  • Opacity: 50%
  • Noise: 5%
  • Color: #ea0f0f
  • Size: 17
Inner Glow

Step 5

Add an Outer Glow with these settings:

  • Opacity: 50%
  • Noise: 5%
  • Color: #ea2314
  • Size: 12
  • Range: 60%
Outer Glow

Step 6

This will style the text. Right-click the styled text layer, and choose Copy Layer Style.

Copy Layer Style

5. Create the Rectangle Shapes

Step 1

Pick the Rounded Rectangle Tool, and set the Radius in the Options bar to 2Click-drag to create a rectangle above the text, with a Height value around 7px.

Then, click-drag to create more rectangles at the beginning and end of the second line of text, or anywhere else you’d like to add them. Just make sure to maintain the same Height for all the rectangles you create.

Create the Rectangles

Step 2

Change all the rectangle layers’ Fill value to 0.

Change the Fill Value

6. Style the Rectangles

Right-click any of the rectangle layers you have, and choose Paste Layer Style. This will apply the same layer style copied from the text layer.

After that, double-click the styled rectangle layer to adjust some of the values:

Step 1

Add a Bevel and Emboss with these settings:

  • Size: 2
Bevel and Emboss

Step 2

Add a Stroke with these settings:

  • Size: 2
  • Position: Outside
Stroke

Step 3

Add an Inner Glow with these settings:

  • Size: 5
Inner Glow

Step 4

Add an Outer Glow with these settings:

  • Size: 17
Outer Glow

Step 5

Right-click the styled rectangle layer, and choose Copy Layer Style.

Copy Layer Style

Step 6

Select the other rectangle layers you have, right-click any of them, and choose Paste Layer Style.

Paste Layer Style

Step 7

Place the text and rectangle layers in a group, and call it Text Effect.

Text Effect Group

7. Style the Group

Double-click the Text Effect group to apply the following layer style:

Step 1

Add a Gradient Overlay with these settings:

  • Check the Dither box
  • Blend Mode: Soft Light
  • Style: Reflected
  • Angle: 135
  • Create the Gradient fill using the colors #fbe7c2 to the left and #e69f99 to the right
Gradient Overlay 1

Step 2

Add another Gradient Overlay effect with these settings:

  • Check the Dither box
  • Blend Mode: Overlay
  • Style: Reflected
  • Angle: 135
  • Use the faucet 10 gradient fill
Gradient Overlay 2

Step 3

Add an Outer Glow with these settings:

  • Opacity: 20%
  • Color: #de1b22
  • Size: 34
  • Range: 60%
Outer Glow

This will enhance the effect.

Styled Group

8. Add Some Light Spots

Step 1

Set the Foreground Color to #451d08, and then create a new layer on top of all layers, call it Light, and change its Blend Mode to Color Dodge.

Light Layer

Step 2

Pick the Brush Tool, and choose a big, soft, round tip. Then start clicking over some letters to brighten them up.

You can change the tip’s size, and play around with the Opacity value in the Options bar to control the intensity of the light spots you’re adding.

Add the Light Spots

Step 3

Click the Create new fill or adjustment layer icon in the Layers panel, and choose Hue/Saturation.

HueSaturation Adjustment Layer

Step 4

Change the Saturation value to 35, and the Lightness to 15, or any other values you like.

Change the Values

9. Adjust the Coloring

Step 1

Add a Gradient adjustment layer on top of the Text Effect group.

Create the gradient fill using the colors #5c456e to the right, #b26b73 in the center, and #fda982 to the left. Change the Style to Reflected, the Angle to 155, and the Scale to 55%.

Gradient Adjustment Layer

Step 2

Change the Gradient layer’s Blend Mode to Color, and its Opacity to 35%.

Gradient Layer Settings

Congratulations! You’re Done

In this tutorial, we created the text and modified it using the different Character panel options and settings. Then we styled the text, created the rectangles, and styled them as well.

After that, we grouped all the layers and added one more layer style. Finally, we added some light spots and a gradient adjustment layer to modify the coloring of the final result.

Please feel free to leave your comments, suggestions, and outcomes below.

Final Result

How to Create a 'Stranger Things’ Inspired Text Effect in Adobe Photoshop

Post pobrano z: How to Create a 'Stranger Things’ Inspired Text Effect in Adobe Photoshop

Final product image
What You’ll Be Creating

This very quick tutorial will show you an easy way to create a text effect inspired by the 'Stranger Things’ series, using only layer styles and some simple adjustments. Let’s get started!

This text effect was inspired by the many Layer Styles available on Envato Market. You can get a very similar style named Stranger Twins, which is available to download and use in Adobe Photoshop.

Tutorial Assets

The following assets were used during the production of this tutorial:

1. Create the Background and the Text

Step 1

Create a new 1280 x 720px document, and fill the Background with the color #0c0101.

Create the Background

Step 2

Create the text in White using the font Indira K.

The original font used is Benguiat, but this is a free alternative that you can use instead.

Set the Size to a value around 141 pt, and check the Faux Bold and All Caps icons in the Character panel (Window > Character).

Create the Text

Step 3

Change the Tracking value to -100.

Change the Tracking

Step 4

Change the Vertical Scale to 115. This will stretch the text vertically.

Change the Vertical Scale

2. Adjust the Bigger Letters

Step 1

Select (highlight) the first letter of your text, and change its Size to a value around 212 pt.

Enlarge the First Letter

Step 2

Next, you’ll need to change the Baseline Shift value in order to move the big letter downwards, until its top is on the same level as the tops of the rest of the letters.

To do that, you can either enter numerical values, or scrub the Set the baseline shift icon to the left.

Set the Baseline Shift

Step 3

Do the same for the last letter of the first line of text, or whatever other letters you like.

Adjust the Last Letter

3. Adjust the Kerning

Step 1

Place the text cursor between the first two letters you have, and change the Kerning to a value you think looks good.

Change the Kerning

Step 2

Depending on your text and the result you’re looking for, adjust the Kerning for the rest of the letters you have. Not all the letters should be adjusted, just the ones you think need that.

Change the Kerning

Step 3

Once you’re done, change the text layer’s Fill value to 0.

Change the Fill Value

4. Style the Text

Double-click the text layer to apply the following layer style:

Step 1

Add a Bevel and Emboss with these settings:

  • Style: Stroke Emboss
  • Depth: 220
  • Size: 3
  • Uncheck the Use Global Light box
  • Angle: 156
  • Altitude: 37
  • Gloss Contour: Cone – Inverted
  • Check the Anti-aliased box
  • Highlight Mode – Opacity: 35%
  • Shadow Mode – Opacity: 50%
Bevel and Emboss

Step 2

Add a Contour with these settings:

  • Contour: Cove – Deep
  • Check the Anti-aliased box.
Contour

Step 3

Add a Stroke with these settings:

  • Size: 3
  • Position: Inside
  • Color: #ce1725
Stroke

Step 4

Add an Inner Glow with these settings:

  • Opacity: 50%
  • Noise: 5%
  • Color: #ea0f0f
  • Size: 17
Inner Glow

Step 5

Add an Outer Glow with these settings:

  • Opacity: 50%
  • Noise: 5%
  • Color: #ea2314
  • Size: 12
  • Range: 60%
Outer Glow

Step 6

This will style the text. Right-click the styled text layer, and choose Copy Layer Style.

Copy Layer Style

5. Create the Rectangle Shapes

Step 1

Pick the Rounded Rectangle Tool, and set the Radius in the Options bar to 2Click-drag to create a rectangle above the text, with a Height value around 7px.

Then, click-drag to create more rectangles at the beginning and end of the second line of text, or anywhere else you’d like to add them. Just make sure to maintain the same Height for all the rectangles you create.

Create the Rectangles

Step 2

Change all the rectangle layers’ Fill value to 0.

Change the Fill Value

6. Style the Rectangles

Right-click any of the rectangle layers you have, and choose Paste Layer Style. This will apply the same layer style copied from the text layer.

After that, double-click the styled rectangle layer to adjust some of the values:

Step 1

Add a Bevel and Emboss with these settings:

  • Size: 2
Bevel and Emboss

Step 2

Add a Stroke with these settings:

  • Size: 2
  • Position: Outside
Stroke

Step 3

Add an Inner Glow with these settings:

  • Size: 5
Inner Glow

Step 4

Add an Outer Glow with these settings:

  • Size: 17
Outer Glow

Step 5

Right-click the styled rectangle layer, and choose Copy Layer Style.

Copy Layer Style

Step 6

Select the other rectangle layers you have, right-click any of them, and choose Paste Layer Style.

Paste Layer Style

Step 7

Place the text and rectangle layers in a group, and call it Text Effect.

Text Effect Group

7. Style the Group

Double-click the Text Effect group to apply the following layer style:

Step 1

Add a Gradient Overlay with these settings:

  • Check the Dither box
  • Blend Mode: Soft Light
  • Style: Reflected
  • Angle: 135
  • Create the Gradient fill using the colors #fbe7c2 to the left and #e69f99 to the right
Gradient Overlay 1

Step 2

Add another Gradient Overlay effect with these settings:

  • Check the Dither box
  • Blend Mode: Overlay
  • Style: Reflected
  • Angle: 135
  • Use the faucet 10 gradient fill
Gradient Overlay 2

Step 3

Add an Outer Glow with these settings:

  • Opacity: 20%
  • Color: #de1b22
  • Size: 34
  • Range: 60%
Outer Glow

This will enhance the effect.

Styled Group

8. Add Some Light Spots

Step 1

Set the Foreground Color to #451d08, and then create a new layer on top of all layers, call it Light, and change its Blend Mode to Color Dodge.

Light Layer

Step 2

Pick the Brush Tool, and choose a big, soft, round tip. Then start clicking over some letters to brighten them up.

You can change the tip’s size, and play around with the Opacity value in the Options bar to control the intensity of the light spots you’re adding.

Add the Light Spots

Step 3

Click the Create new fill or adjustment layer icon in the Layers panel, and choose Hue/Saturation.

HueSaturation Adjustment Layer

Step 4

Change the Saturation value to 35, and the Lightness to 15, or any other values you like.

Change the Values

9. Adjust the Coloring

Step 1

Add a Gradient adjustment layer on top of the Text Effect group.

Create the gradient fill using the colors #5c456e to the right, #b26b73 in the center, and #fda982 to the left. Change the Style to Reflected, the Angle to 155, and the Scale to 55%.

Gradient Adjustment Layer

Step 2

Change the Gradient layer’s Blend Mode to Color, and its Opacity to 35%.

Gradient Layer Settings

Congratulations! You’re Done

In this tutorial, we created the text and modified it using the different Character panel options and settings. Then we styled the text, created the rectangles, and styled them as well.

After that, we grouped all the layers and added one more layer style. Finally, we added some light spots and a gradient adjustment layer to modify the coloring of the final result.

Please feel free to leave your comments, suggestions, and outcomes below.

Final Result

How to Create a 'Stranger Things’ Inspired Text Effect in Adobe Photoshop

Post pobrano z: How to Create a 'Stranger Things’ Inspired Text Effect in Adobe Photoshop

Final product image
What You’ll Be Creating

This very quick tutorial will show you an easy way to create a text effect inspired by the 'Stranger Things’ series, using only layer styles and some simple adjustments. Let’s get started!

This text effect was inspired by the many Layer Styles available on Envato Market. You can get a very similar style named Stranger Twins, which is available to download and use in Adobe Photoshop.

Tutorial Assets

The following assets were used during the production of this tutorial:

1. Create the Background and the Text

Step 1

Create a new 1280 x 720px document, and fill the Background with the color #0c0101.

Create the Background

Step 2

Create the text in White using the font Indira K.

The original font used is Benguiat, but this is a free alternative that you can use instead.

Set the Size to a value around 141 pt, and check the Faux Bold and All Caps icons in the Character panel (Window > Character).

Create the Text

Step 3

Change the Tracking value to -100.

Change the Tracking

Step 4

Change the Vertical Scale to 115. This will stretch the text vertically.

Change the Vertical Scale

2. Adjust the Bigger Letters

Step 1

Select (highlight) the first letter of your text, and change its Size to a value around 212 pt.

Enlarge the First Letter

Step 2

Next, you’ll need to change the Baseline Shift value in order to move the big letter downwards, until its top is on the same level as the tops of the rest of the letters.

To do that, you can either enter numerical values, or scrub the Set the baseline shift icon to the left.

Set the Baseline Shift

Step 3

Do the same for the last letter of the first line of text, or whatever other letters you like.

Adjust the Last Letter

3. Adjust the Kerning

Step 1

Place the text cursor between the first two letters you have, and change the Kerning to a value you think looks good.

Change the Kerning

Step 2

Depending on your text and the result you’re looking for, adjust the Kerning for the rest of the letters you have. Not all the letters should be adjusted, just the ones you think need that.

Change the Kerning

Step 3

Once you’re done, change the text layer’s Fill value to 0.

Change the Fill Value

4. Style the Text

Double-click the text layer to apply the following layer style:

Step 1

Add a Bevel and Emboss with these settings:

  • Style: Stroke Emboss
  • Depth: 220
  • Size: 3
  • Uncheck the Use Global Light box
  • Angle: 156
  • Altitude: 37
  • Gloss Contour: Cone – Inverted
  • Check the Anti-aliased box
  • Highlight Mode – Opacity: 35%
  • Shadow Mode – Opacity: 50%
Bevel and Emboss

Step 2

Add a Contour with these settings:

  • Contour: Cove – Deep
  • Check the Anti-aliased box.
Contour

Step 3

Add a Stroke with these settings:

  • Size: 3
  • Position: Inside
  • Color: #ce1725
Stroke

Step 4

Add an Inner Glow with these settings:

  • Opacity: 50%
  • Noise: 5%
  • Color: #ea0f0f
  • Size: 17
Inner Glow

Step 5

Add an Outer Glow with these settings:

  • Opacity: 50%
  • Noise: 5%
  • Color: #ea2314
  • Size: 12
  • Range: 60%
Outer Glow

Step 6

This will style the text. Right-click the styled text layer, and choose Copy Layer Style.

Copy Layer Style

5. Create the Rectangle Shapes

Step 1

Pick the Rounded Rectangle Tool, and set the Radius in the Options bar to 2Click-drag to create a rectangle above the text, with a Height value around 7px.

Then, click-drag to create more rectangles at the beginning and end of the second line of text, or anywhere else you’d like to add them. Just make sure to maintain the same Height for all the rectangles you create.

Create the Rectangles

Step 2

Change all the rectangle layers’ Fill value to 0.

Change the Fill Value

6. Style the Rectangles

Right-click any of the rectangle layers you have, and choose Paste Layer Style. This will apply the same layer style copied from the text layer.

After that, double-click the styled rectangle layer to adjust some of the values:

Step 1

Add a Bevel and Emboss with these settings:

  • Size: 2
Bevel and Emboss

Step 2

Add a Stroke with these settings:

  • Size: 2
  • Position: Outside
Stroke

Step 3

Add an Inner Glow with these settings:

  • Size: 5
Inner Glow

Step 4

Add an Outer Glow with these settings:

  • Size: 17
Outer Glow

Step 5

Right-click the styled rectangle layer, and choose Copy Layer Style.

Copy Layer Style

Step 6

Select the other rectangle layers you have, right-click any of them, and choose Paste Layer Style.

Paste Layer Style

Step 7

Place the text and rectangle layers in a group, and call it Text Effect.

Text Effect Group

7. Style the Group

Double-click the Text Effect group to apply the following layer style:

Step 1

Add a Gradient Overlay with these settings:

  • Check the Dither box
  • Blend Mode: Soft Light
  • Style: Reflected
  • Angle: 135
  • Create the Gradient fill using the colors #fbe7c2 to the left and #e69f99 to the right
Gradient Overlay 1

Step 2

Add another Gradient Overlay effect with these settings:

  • Check the Dither box
  • Blend Mode: Overlay
  • Style: Reflected
  • Angle: 135
  • Use the faucet 10 gradient fill
Gradient Overlay 2

Step 3

Add an Outer Glow with these settings:

  • Opacity: 20%
  • Color: #de1b22
  • Size: 34
  • Range: 60%
Outer Glow

This will enhance the effect.

Styled Group

8. Add Some Light Spots

Step 1

Set the Foreground Color to #451d08, and then create a new layer on top of all layers, call it Light, and change its Blend Mode to Color Dodge.

Light Layer

Step 2

Pick the Brush Tool, and choose a big, soft, round tip. Then start clicking over some letters to brighten them up.

You can change the tip’s size, and play around with the Opacity value in the Options bar to control the intensity of the light spots you’re adding.

Add the Light Spots

Step 3

Click the Create new fill or adjustment layer icon in the Layers panel, and choose Hue/Saturation.

HueSaturation Adjustment Layer

Step 4

Change the Saturation value to 35, and the Lightness to 15, or any other values you like.

Change the Values

9. Adjust the Coloring

Step 1

Add a Gradient adjustment layer on top of the Text Effect group.

Create the gradient fill using the colors #5c456e to the right, #b26b73 in the center, and #fda982 to the left. Change the Style to Reflected, the Angle to 155, and the Scale to 55%.

Gradient Adjustment Layer

Step 2

Change the Gradient layer’s Blend Mode to Color, and its Opacity to 35%.

Gradient Layer Settings

Congratulations! You’re Done

In this tutorial, we created the text and modified it using the different Character panel options and settings. Then we styled the text, created the rectangles, and styled them as well.

After that, we grouped all the layers and added one more layer style. Finally, we added some light spots and a gradient adjustment layer to modify the coloring of the final result.

Please feel free to leave your comments, suggestions, and outcomes below.

Final Result

How to Create a 'Stranger Things’ Inspired Text Effect in Adobe Photoshop

Post pobrano z: How to Create a 'Stranger Things’ Inspired Text Effect in Adobe Photoshop

Final product image
What You’ll Be Creating

This very quick tutorial will show you an easy way to create a text effect inspired by the 'Stranger Things’ series, using only layer styles and some simple adjustments. Let’s get started!

This text effect was inspired by the many Layer Styles available on Envato Market. You can get a very similar style named Stranger Twins, which is available to download and use in Adobe Photoshop.

Tutorial Assets

The following assets were used during the production of this tutorial:

1. Create the Background and the Text

Step 1

Create a new 1280 x 720px document, and fill the Background with the color #0c0101.

Create the Background

Step 2

Create the text in White using the font Indira K.

The original font used is Benguiat, but this is a free alternative that you can use instead.

Set the Size to a value around 141 pt, and check the Faux Bold and All Caps icons in the Character panel (Window > Character).

Create the Text

Step 3

Change the Tracking value to -100.

Change the Tracking

Step 4

Change the Vertical Scale to 115. This will stretch the text vertically.

Change the Vertical Scale

2. Adjust the Bigger Letters

Step 1

Select (highlight) the first letter of your text, and change its Size to a value around 212 pt.

Enlarge the First Letter

Step 2

Next, you’ll need to change the Baseline Shift value in order to move the big letter downwards, until its top is on the same level as the tops of the rest of the letters.

To do that, you can either enter numerical values, or scrub the Set the baseline shift icon to the left.

Set the Baseline Shift

Step 3

Do the same for the last letter of the first line of text, or whatever other letters you like.

Adjust the Last Letter

3. Adjust the Kerning

Step 1

Place the text cursor between the first two letters you have, and change the Kerning to a value you think looks good.

Change the Kerning

Step 2

Depending on your text and the result you’re looking for, adjust the Kerning for the rest of the letters you have. Not all the letters should be adjusted, just the ones you think need that.

Change the Kerning

Step 3

Once you’re done, change the text layer’s Fill value to 0.

Change the Fill Value

4. Style the Text

Double-click the text layer to apply the following layer style:

Step 1

Add a Bevel and Emboss with these settings:

  • Style: Stroke Emboss
  • Depth: 220
  • Size: 3
  • Uncheck the Use Global Light box
  • Angle: 156
  • Altitude: 37
  • Gloss Contour: Cone – Inverted
  • Check the Anti-aliased box
  • Highlight Mode – Opacity: 35%
  • Shadow Mode – Opacity: 50%
Bevel and Emboss

Step 2

Add a Contour with these settings:

  • Contour: Cove – Deep
  • Check the Anti-aliased box.
Contour

Step 3

Add a Stroke with these settings:

  • Size: 3
  • Position: Inside
  • Color: #ce1725
Stroke

Step 4

Add an Inner Glow with these settings:

  • Opacity: 50%
  • Noise: 5%
  • Color: #ea0f0f
  • Size: 17
Inner Glow

Step 5

Add an Outer Glow with these settings:

  • Opacity: 50%
  • Noise: 5%
  • Color: #ea2314
  • Size: 12
  • Range: 60%
Outer Glow

Step 6

This will style the text. Right-click the styled text layer, and choose Copy Layer Style.

Copy Layer Style

5. Create the Rectangle Shapes

Step 1

Pick the Rounded Rectangle Tool, and set the Radius in the Options bar to 2Click-drag to create a rectangle above the text, with a Height value around 7px.

Then, click-drag to create more rectangles at the beginning and end of the second line of text, or anywhere else you’d like to add them. Just make sure to maintain the same Height for all the rectangles you create.

Create the Rectangles

Step 2

Change all the rectangle layers’ Fill value to 0.

Change the Fill Value

6. Style the Rectangles

Right-click any of the rectangle layers you have, and choose Paste Layer Style. This will apply the same layer style copied from the text layer.

After that, double-click the styled rectangle layer to adjust some of the values:

Step 1

Add a Bevel and Emboss with these settings:

  • Size: 2
Bevel and Emboss

Step 2

Add a Stroke with these settings:

  • Size: 2
  • Position: Outside
Stroke

Step 3

Add an Inner Glow with these settings:

  • Size: 5
Inner Glow

Step 4

Add an Outer Glow with these settings:

  • Size: 17
Outer Glow

Step 5

Right-click the styled rectangle layer, and choose Copy Layer Style.

Copy Layer Style

Step 6

Select the other rectangle layers you have, right-click any of them, and choose Paste Layer Style.

Paste Layer Style

Step 7

Place the text and rectangle layers in a group, and call it Text Effect.

Text Effect Group

7. Style the Group

Double-click the Text Effect group to apply the following layer style:

Step 1

Add a Gradient Overlay with these settings:

  • Check the Dither box
  • Blend Mode: Soft Light
  • Style: Reflected
  • Angle: 135
  • Create the Gradient fill using the colors #fbe7c2 to the left and #e69f99 to the right
Gradient Overlay 1

Step 2

Add another Gradient Overlay effect with these settings:

  • Check the Dither box
  • Blend Mode: Overlay
  • Style: Reflected
  • Angle: 135
  • Use the faucet 10 gradient fill
Gradient Overlay 2

Step 3

Add an Outer Glow with these settings:

  • Opacity: 20%
  • Color: #de1b22
  • Size: 34
  • Range: 60%
Outer Glow

This will enhance the effect.

Styled Group

8. Add Some Light Spots

Step 1

Set the Foreground Color to #451d08, and then create a new layer on top of all layers, call it Light, and change its Blend Mode to Color Dodge.

Light Layer

Step 2

Pick the Brush Tool, and choose a big, soft, round tip. Then start clicking over some letters to brighten them up.

You can change the tip’s size, and play around with the Opacity value in the Options bar to control the intensity of the light spots you’re adding.

Add the Light Spots

Step 3

Click the Create new fill or adjustment layer icon in the Layers panel, and choose Hue/Saturation.

HueSaturation Adjustment Layer

Step 4

Change the Saturation value to 35, and the Lightness to 15, or any other values you like.

Change the Values

9. Adjust the Coloring

Step 1

Add a Gradient adjustment layer on top of the Text Effect group.

Create the gradient fill using the colors #5c456e to the right, #b26b73 in the center, and #fda982 to the left. Change the Style to Reflected, the Angle to 155, and the Scale to 55%.

Gradient Adjustment Layer

Step 2

Change the Gradient layer’s Blend Mode to Color, and its Opacity to 35%.

Gradient Layer Settings

Congratulations! You’re Done

In this tutorial, we created the text and modified it using the different Character panel options and settings. Then we styled the text, created the rectangles, and styled them as well.

After that, we grouped all the layers and added one more layer style. Finally, we added some light spots and a gradient adjustment layer to modify the coloring of the final result.

Please feel free to leave your comments, suggestions, and outcomes below.

Final Result

How to Create a 'Stranger Things’ Inspired Text Effect in Adobe Photoshop

Post pobrano z: How to Create a 'Stranger Things’ Inspired Text Effect in Adobe Photoshop

Final product image
What You’ll Be Creating

This very quick tutorial will show you an easy way to create a text effect inspired by the 'Stranger Things’ series, using only layer styles and some simple adjustments. Let’s get started!

This text effect was inspired by the many Layer Styles available on Envato Market. You can get a very similar style named Stranger Twins, which is available to download and use in Adobe Photoshop.

Tutorial Assets

The following assets were used during the production of this tutorial:

1. Create the Background and the Text

Step 1

Create a new 1280 x 720px document, and fill the Background with the color #0c0101.

Create the Background

Step 2

Create the text in White using the font Indira K.

The original font used is Benguiat, but this is a free alternative that you can use instead.

Set the Size to a value around 141 pt, and check the Faux Bold and All Caps icons in the Character panel (Window > Character).

Create the Text

Step 3

Change the Tracking value to -100.

Change the Tracking

Step 4

Change the Vertical Scale to 115. This will stretch the text vertically.

Change the Vertical Scale

2. Adjust the Bigger Letters

Step 1

Select (highlight) the first letter of your text, and change its Size to a value around 212 pt.

Enlarge the First Letter

Step 2

Next, you’ll need to change the Baseline Shift value in order to move the big letter downwards, until its top is on the same level as the tops of the rest of the letters.

To do that, you can either enter numerical values, or scrub the Set the baseline shift icon to the left.

Set the Baseline Shift

Step 3

Do the same for the last letter of the first line of text, or whatever other letters you like.

Adjust the Last Letter

3. Adjust the Kerning

Step 1

Place the text cursor between the first two letters you have, and change the Kerning to a value you think looks good.

Change the Kerning

Step 2

Depending on your text and the result you’re looking for, adjust the Kerning for the rest of the letters you have. Not all the letters should be adjusted, just the ones you think need that.

Change the Kerning

Step 3

Once you’re done, change the text layer’s Fill value to 0.

Change the Fill Value

4. Style the Text

Double-click the text layer to apply the following layer style:

Step 1

Add a Bevel and Emboss with these settings:

  • Style: Stroke Emboss
  • Depth: 220
  • Size: 3
  • Uncheck the Use Global Light box
  • Angle: 156
  • Altitude: 37
  • Gloss Contour: Cone – Inverted
  • Check the Anti-aliased box
  • Highlight Mode – Opacity: 35%
  • Shadow Mode – Opacity: 50%
Bevel and Emboss

Step 2

Add a Contour with these settings:

  • Contour: Cove – Deep
  • Check the Anti-aliased box.
Contour

Step 3

Add a Stroke with these settings:

  • Size: 3
  • Position: Inside
  • Color: #ce1725
Stroke

Step 4

Add an Inner Glow with these settings:

  • Opacity: 50%
  • Noise: 5%
  • Color: #ea0f0f
  • Size: 17
Inner Glow

Step 5

Add an Outer Glow with these settings:

  • Opacity: 50%
  • Noise: 5%
  • Color: #ea2314
  • Size: 12
  • Range: 60%
Outer Glow

Step 6

This will style the text. Right-click the styled text layer, and choose Copy Layer Style.

Copy Layer Style

5. Create the Rectangle Shapes

Step 1

Pick the Rounded Rectangle Tool, and set the Radius in the Options bar to 2Click-drag to create a rectangle above the text, with a Height value around 7px.

Then, click-drag to create more rectangles at the beginning and end of the second line of text, or anywhere else you’d like to add them. Just make sure to maintain the same Height for all the rectangles you create.

Create the Rectangles

Step 2

Change all the rectangle layers’ Fill value to 0.

Change the Fill Value

6. Style the Rectangles

Right-click any of the rectangle layers you have, and choose Paste Layer Style. This will apply the same layer style copied from the text layer.

After that, double-click the styled rectangle layer to adjust some of the values:

Step 1

Add a Bevel and Emboss with these settings:

  • Size: 2
Bevel and Emboss

Step 2

Add a Stroke with these settings:

  • Size: 2
  • Position: Outside
Stroke

Step 3

Add an Inner Glow with these settings:

  • Size: 5
Inner Glow

Step 4

Add an Outer Glow with these settings:

  • Size: 17
Outer Glow

Step 5

Right-click the styled rectangle layer, and choose Copy Layer Style.

Copy Layer Style

Step 6

Select the other rectangle layers you have, right-click any of them, and choose Paste Layer Style.

Paste Layer Style

Step 7

Place the text and rectangle layers in a group, and call it Text Effect.

Text Effect Group

7. Style the Group

Double-click the Text Effect group to apply the following layer style:

Step 1

Add a Gradient Overlay with these settings:

  • Check the Dither box
  • Blend Mode: Soft Light
  • Style: Reflected
  • Angle: 135
  • Create the Gradient fill using the colors #fbe7c2 to the left and #e69f99 to the right
Gradient Overlay 1

Step 2

Add another Gradient Overlay effect with these settings:

  • Check the Dither box
  • Blend Mode: Overlay
  • Style: Reflected
  • Angle: 135
  • Use the faucet 10 gradient fill
Gradient Overlay 2

Step 3

Add an Outer Glow with these settings:

  • Opacity: 20%
  • Color: #de1b22
  • Size: 34
  • Range: 60%
Outer Glow

This will enhance the effect.

Styled Group

8. Add Some Light Spots

Step 1

Set the Foreground Color to #451d08, and then create a new layer on top of all layers, call it Light, and change its Blend Mode to Color Dodge.

Light Layer

Step 2

Pick the Brush Tool, and choose a big, soft, round tip. Then start clicking over some letters to brighten them up.

You can change the tip’s size, and play around with the Opacity value in the Options bar to control the intensity of the light spots you’re adding.

Add the Light Spots

Step 3

Click the Create new fill or adjustment layer icon in the Layers panel, and choose Hue/Saturation.

HueSaturation Adjustment Layer

Step 4

Change the Saturation value to 35, and the Lightness to 15, or any other values you like.

Change the Values

9. Adjust the Coloring

Step 1

Add a Gradient adjustment layer on top of the Text Effect group.

Create the gradient fill using the colors #5c456e to the right, #b26b73 in the center, and #fda982 to the left. Change the Style to Reflected, the Angle to 155, and the Scale to 55%.

Gradient Adjustment Layer

Step 2

Change the Gradient layer’s Blend Mode to Color, and its Opacity to 35%.

Gradient Layer Settings

Congratulations! You’re Done

In this tutorial, we created the text and modified it using the different Character panel options and settings. Then we styled the text, created the rectangles, and styled them as well.

After that, we grouped all the layers and added one more layer style. Finally, we added some light spots and a gradient adjustment layer to modify the coloring of the final result.

Please feel free to leave your comments, suggestions, and outcomes below.

Final Result

64 Awesome Halloween Invitations and Flyers for Your Spooky Celebrations

Post pobrano z: 64 Awesome Halloween Invitations and Flyers for Your Spooky Celebrations

It’s almost Halloween! That special time of the year when stores pack their shelves with candy and we all dress up as our favorite ghouls.

And what better way to celebrate our favorite monsters and urban legends then with a  spooktacular collection of Halloween invites and flyers you can only find on Envato Market? Here we have curated a selection of 50 to satisfy all your party needs.

Looking for more to choose from? Browse the wide selection of templates available to you on Envato Market.

Or enlist the help of a design professional by contacting the good folks at Envato Studio.

Halloween Invitations

You can’t have a party without sending out a few invites. These Halloween invitations will make you want to throw your very own costume party and celebrate in style.

Happy Halloween Banner Invitation Card

Great for kids parties, this Halloween invitation is super cute and bright. Enjoy the playful design complete with a tombstone, pumpkin, and witch hat.

Happy Halloween Banner Invitation Card

Halloween Party Invitation Template

Kick off your ghoulish celebrations with this invitation template. This simple design features dripping font and a creepy graveyard design at the bottom.

Halloween Party Invitation Template

Vintage Midnight Party Halloween Invitation

Inspired by the classics, this Halloween invite features several stills from horror classics with some fantastic fonts you can download for free. Pick from three versions and several color combinations.

Vintage Midnight Party Halloween Invitation

Halloween Monster Mash Party Invite

Monster mash anyone? Summon your friends to eat, drink, and be scary with this fun and simple Halloween party invite. With two themes available and text ready-to-edit, choose from portrait or landscape orientation for your invites.

Halloween Monster Mash Party Invite

Spooktacular Halloween Party Invitation

Keep it simple with this stylish invitation. This invite contains spooky ghosts against a starry sky. Enjoy the delightful design for a sweet take on Halloween invitations.

Halloween Flyer

Grungy Halloween Invitations in Retro Style

Add some retro charm to your holiday invites! This awesome collection includes four different designs to choose from. They go great with spooky Halloween themes and are sure to impress your party goers.

Grungy Halloween Invitations In Retro Style

Simple Halloween Bash Invitation Bundle

This creative set of invitations provides a variation of three fun designs to choose from. Pick from designs like Frankenstein, a werewolf, and a creepy pumpkin to bring a simple quirky flair to your invites.

Simple Halloween Bash Invitation Bundle

Skull Head Trick or Treat Halloween Invite

Are you a rebellious trick or treater wreaking havoc in the night? Then kick off your Halloween celebrations with this simple invite design. Editable in both Photoshop and Illustrator, you can customize this design no matter your Adobe product preferences.

Skull Head Trick or Treat Halloween Invitation

Typography Halloween Invite Flyer

Choose from different party themes to set your invite apart from others. This pack features spooky, minimalist designs with witch, ghost, and skull elements. Customize it easily by changing the fully editable text.

Typography Halloween Invite Flyer

Halloween Invitation II

Looking for a simple design that is haunting yet straight to the point? Check out this Halloween invitation that features an elegant cemetery silhouette that is subtle enough to fill you with fear. With a fully layered PSD file you can choose to customize the colors and text to fill your needs.

Halloween Invitation II

Halloween Invitation & Flyer Pack

This 2-for-1 deal packs a punch with a simple design you can use for either an invitation or party flyer. Change the background color to switch up the design or edit the text to fill your needs with Adobe Illustrator.

Halloween Invitation  Flyer Pack

Chalkboard Halloween Invitation Card

Love the simplicity of black and white? This chalkboard design features a simple composition that allows the typography and details of your party shine. It’s fully customizable and even comes with free fonts!

Chalkboard Halloween Invitation Card

Costume Halloween Party

Get your friends and family together for a fun costume party with this flyer invitation. This design features a cartoon theme perfect for all ages. Get access to three different color schemes to fit the style of your party.

Costume Halloween Party

Pumpkin Carving Halloween Invitation

What fun designs will you carve on your pumpkins this Halloween? Invite your friends over for a messy good time, and reward the winners with candy. Use this simple design for your invitations featuring a pumpkin, black cat, and simple yellow ribbons.

Pumpkin Carving Halloween Invitation

Glowing Halloween Party Invitation

This beautiful and simple design showcases several fun fonts to highlight all your party details. Available in the format for Adobe Illustrator, customize this invite with your own text and location.

Glowing Halloween Party Invitation

Purple Halloween Party Invitation

Need something short and sweet? This simple design features a beautiful purple night sky with creepy elements from a church cemetery. Create your invites quick and easy by just switching out the bottom text with your own location and contact details.

Purple Halloween Party Invitation

Zombies Attack Invitation Flyer

Watch out for the zombie attack with this wicked invitation flyer. This flyer features an apocalpytic theme with fire, destruction, and zombies, of course. Entertain your friends with the invite of the year!

Zombies Attack

Halloween Party Invitations – Set of 3

Do you like pumpkins, bats, or haunted houses? Choose from three simple designs with this set of Halloween party invitations. These designs use the vector EPS format, and you can easily customize the text for your celebration.

Halloween Party Invitations - Set of 3

Cute Halloween Party Invitation

You don’t always have to creep everyone out to have a good time. This simple party invitation features a cute trio of characters that you can interchange with several different colors. Editable in several formats, use this design for your kid’s party and school celebrations.

Cute Halloween Party Invitation

Halloween Frame Party Invitation

This beautiful yet simple design features a frame of skulls and other fall goodies to frame your choice of text. Add a hint of grunge to your party with this vintage-themed invitation.

Halloween Frame Party Invitation

Horror Witch Halloween Invitation

If you love bold colors and witches then this is the invite for you! Choose this invite made from 100% vector elements with easily resizable vectors. Shock your friends with these bold neon colors and choose something a little out of the box for this Halloween.

Horror Witch Halloween Invitation

Halloween Business Card Party Invitation

Business card or spooky party invite? This unique design features a layout and composition specially-made for business card printing. It utilizes a standard 3.5 x 2 inch design with high resolution for a fantastic high-quality result.

Halloween Business Card Party Invitation

Striped Halloween Party Invitation

Check out this colorful party invite featuring interchangeable skull and pumpkin designs. Edit your text with free fonts and set your celebrations into effect with this easy to use layout.

Striped Halloween Party Invitation

Halloween Ticket Party Invitation

Add a unique twist to your Halloween invites with a ticket-based design. Choose from several layout sizes and customize the colors to fit your theme.

Halloween Ticket Party Invitation

Halloween Costume Party Invitation Card

Having a costume party for all your friends? Pick this fun card that features a flyer full of fun cartoon characters taking their own spin on your favorite Halloween costumes.

Halloween Costume Party Invitation Card

Admission Ticket & Halloween Invite – Ghost Edition

This unique Halloween invitation gives you the option of giving admission tickets to your friends. Simply bring the entire invite, and include an admission number for your exclusive party.

Admission Ticket  Halloween Invite - Ghost Edition

Admission Ticket & Halloween Invitation – Pumpkin Edition

Here is another great admission ticket design utilizing a traditional Halloween pumpkin instead. Choose between a pumpkin along a simple background or an intricate back drop to celebrate your Halloween bash. Admission Ticket  Halloween Invitation - Pumpkin Edition

Simple Pumpkin Witch Halloween Invitation

Cast a spell on all your friends with this clean Halloween invitation. This design features beautiful calligraphy along with an easy to use design you can customize in Adobe Illustrator.

Simple Pumpkin Witch Halloween Invitation

Zombie Party Halloween Invitation Card

Who knew zombies could be so beautiful? This vector design features two deadly zombie hands reaching out of their grave to celebrate your upcoming party. With fun details like bats, gravestones, and an owl, impress your friends with this beautiful yet simple design.

Zombie Party Halloween Invitation Card

Pumpkin Brew Halloween Party Invitation

Boil, boil, toil, and trouble! Impress your friends with this Halloween invite featuring a scary pumpkin and fierce green fire. Choose to keep the fonts as is or incorporate your own for added customization.

Pumpkin Brew Halloween Party Invitation

Halloween Flyers

Whether you’re staying home with friends or dancing the night away, these Halloween flyers will make you want to get up off your feet. Let’s just hope that they’re still attached when you do!

Horror Party Flyer

Kick off the holiday with the party of the year! This flyer features an awesome club theme with 3D text and more. Download several print ready files available in two convenient sizes.

Horror Party Flyer

Halloween Flyer

Create a big impact with this bold and beautiful Halloween flyer. This template features a colorful design with neon text elements you can easily adjust. Enjoy one fully layered Photoshop file with links to the fonts used.

Halloween Flyer

Halloween Night Party Flyer

Get ready to dance all night with this show stopping party flyer. This flyer contains impressive abstract elements combined with a Halloween theme. Download this print ready file and get ready to use it right away!

Halloween Night Party Flyer

Sexy Thriller Halloween Flyer

If you’re holding a party for the adults, try out this Halloween flyer for your nightclub or party events. With links to fonts used and several design variations, insert your own beautiful vixens to bring in your sinfully good times.

Sexy Thriller Halloween Flyer

Chills and Thrills Halloween Party Flyer

Create chills up the spines of your party goers with this party flyer. This template features a haunted forest vibes with chunky, grunge text. Update it easily with the help of Adobe Photoshop. It’s a flyer that’s perfect for beginners.

Chills and Thrills Halloween Party Flyer

Scary Scarecrow Halloween Flyer

Care to dance with a flaming scarecrow? Creep out your friends with this haunting design which includes six awesome scarecrows, two pre designed versions, and more custom elements to choose from.

Scary Scarecrow Halloween Flyer

Halloween Party Flyer

Creep out your party goers with this scary flyer. This flyer features a horror movie design reminiscent of iconic movie scenes. It’s great for any flyer or invitation and super easy to customize.

Halloween Party Flyer

Grunge Halloween Party Flyer

If you’re looking for a grunge look for your flyer, then look no further. This illustrative poster design features a fun grunge look that is matched with unique fonts and elements. Interchange your details with this easy-to-use template.

Grunge Halloween Party Flyer

Halloween Party Flyer

Don’t get caught in the spooky cobwebs! This cool flyer design features a black and white color theme for a nice, minimalist vibe. Simply switch out the party details to add your own in a matter of minutes!

Halloween Party Flyer

Graphic Zombie Hand Halloween Party Flyer

Having a zombie-themed party at your place? Try out this Halloween flyer to creep out your friends and let them know of the shenanigans ahead. Available in three colors styles and organized layers, this flyer is sure to wake the undead.

Graphic Zombie Hand Halloween Party Flyer

Halloween Rock Festival Flyer Template

Rock out at this year’s festival with this epic flyer template. This template features a rock and roll skull design with minimalist vector details. Choose from three different colors to enjoy this flyer in gold, white, and blue designs.

Halloween Rock Festival Flyer Template

Slime Halloween Party Flyer

Feeling a little slimey? Chances are you’ve gotten yourself into a sticky situation with this Halloween flyer. This design features an organized PSD file for easy editing and free fonts you can download in seconds. So get slimey in no time with this fun party flyer!

Slime Halloween Party Flyer

Gorey Zombie Hand Halloween Flyer

Celebrate the night the dead walk the earth with this quirky zombie flyer. Choose from three different versions, and even a different hand position to promote your zombie event.

Gorey Zombie Hand Halloween Flyer

Kids Halloween Party Flyer

If you’re looking for a kid-friendly design, then this is the flyer for you. With adorable vector elements and different monster cartoons to choose from, your child will have a blast knowing they have the coolest flyer on the block.

Kids Halloween Party Flyer

Haunted House Halloween Flyer

Enter at your own risk. This flyer features a dark haunted house along with a spooky design. With its elements so easy to customize, all you’ll need to is add your own text below and get ready to party!

Haunted House Halloween Flyer

Halloween Flyer

Add some shiny elements to your flyer for a hot design. This template features gold 3D elements like skulls and pumpkins for a sophisticated alternative. Swap out the title and additional text elements to get started with this flyer today!

Halloween Flyer

Spooky Halloween Flyer Template

Want to keep your friends up at night? Scare them with this super spooky Halloween template before they even show up to your party. Edit the text easily in Adobe Photoshop, and switch out the main photo with a choice of your own possessed model from Photodune.

Spooky Halloween Flyer Template

Zombie Brain Halloween Flyer

Bbbbraaainnns! This Halloween flyer features a bright design and colorful zombie that will be sure to charm the limbs off your friends. With two color options available, check out this flyer in its easily editable PSD format.

Zombie Brain Halloween Flyer

Club Z Horror Party Template

Did anyone invite zombies to this party? This bloody flyer design features dripping text and 
customizable elements you can edit in Adobe Photoshop. Change out the images with your own zombies or download some stocks from Photodune.

Club Z Horror Party Template

Frankenstein Halloween Flyer

It’s alive! If you’ve been hiding out in a secret laboratory, then this flyer may be for you. Surprise your friends with your deadly creation with this fun Halloween design. Edit in Adobe Photoshop and choose from several different colors to finalize your monster creation.

Frankenstein Halloween Flyer

Black and White Halloween Party Flyer

Looking for a simple design that is easy to print? Check out this grunge Halloween party flyer with graphic elements. Customize the text to fit your party details and celebrate your festivities in style.

Black and White Halloween Party Flyer

Zombie Party Halloween Flyer

Zombies like parties too! Bring in Halloween this year with a fun zombie party using this flyer design. It features colorful Halloween elements and splashes of grunge to keep things a little dirty.

Zombie Party Halloween Flyer

Graveyard Halloween Party Flyer

Need a flyer that is a balance of cool and spooky? Check out this wicked Halloween flyer with graveyard details and customizable text.

Graveyard Halloween Party Flyer

Grunge Vintage Halloween Party Flyer

Feeling a little vintage? Celebrate your feelings of nostalgia with this spooky flyer design. With its fully editable file and easy-to-use PSD format, change the colors to reflect your theme with this print ready poster.

Grunge Vintage Halloween Part

Skull Halloween Party Template

Yes, this awesome skull is included! With an explosive pink design, everyone will be read to dance the night away at your Halloween event. Included with this template are links to the fonts used for this easy-to-edit PSD file.

Skull Halloween Party Template

Simple Halloween Party Flyer

This flyer has all your favorite Halloween elements in one. With a fun ghoulish text atop a skull backdrop, you can let your event shine with this simple design and bold color. Fully editable in Adobe Photoshop, change out the colors or keep this beautiful yellow to go with your Halloween theme. 

Simple Halloween Party Flyer

Retro Halloween Party Flyer

If simple elements are more your style, check out this retro design. Featuring adorable Halloween elements like bats, pumpkins, and even your very own Dracula, invite your friends to your next horror party with this quick and easy flyer.

Retro Halloween Party Flyer

Halloween Monster Party Flyer

Don’t get too close or you just might end up for dinner! This Halloween flyer features a large vector design that is easily resizable in Photoshop. Choose from several vibrant colors and scare your friends with this monstrous design.

Halloween Monster Party Flyer

Trick or Treat Halloween Flyer

Trick or Treat? This Halloween design features a cool night time color palette with glowing pumpkins. Kick off your party or event with this ready-to-print flyer with guides for your understanding.

Trick or Treat Halloween Flyer

Voodoo Doll Halloween Flyer

Allude to your love of voodoo with this fun Halloween design. With a giant spider web, voodoo doll, and additional spooky elements, easily customize this illustrative poster with different colors and unique fonts.

Voodoo Doll Halloween Flyer

Halloween Trunk or Treat Flyer

Invite the neighbors over for a fun game of trunk or treat. Packed with three design variations, this template features ghost, pumpkin, and fire themes. Get access to six files and free fonts in one convenient download!

Halloween Trunk or Treat Flyer

Spooky Hand Halloween Flyer

Need a hand? This Halloween flyer features a mysterious spooky hand that slashes through the poster design. And with the image included, all you’ll need to do is switch out the text with your own party information!

Spooky Hand Halloween Flyer

Skull and Flower Halloween Flyer

If the other designs aren’t quite your speed, then try out this gorgeous Halloween flyer. Featuring a large skull with an elegant flower head piece, show off your love of fashion and style with this unique event poster. Customize the colors to your liking and take relief in knowing that all the images are included!

Skull and Flower Halloween Flyer

Pumpkin Trio Halloween Party Template

Need a quick flyer design with realistic elements? Check out this
impressive Halloween flyer packed with all the resources that you see.
Easily modify text, switch the colors around, and add or remove objects
to the layered PSD file.

Pumpkin Trio Halloween Party Template

Halloween Haunted House Flyer

Celebrate your favorite holiday in the comfort of your home with this haunted house theme. This template features a clean, modern design with bold text against a candlelit background. Just add your address and official event date to get your party started.

Halloween Haunted House Flyer

Conclusion

This list is jam-packed with Halloween resources for the avid designer familiar with Adobe Photoshop and Illustrator. But with thousands of flyers available at your fingertips, chances are we’ve missed a few to add to your personal collection. Be sure to browse Envato Market for more resources and let us know your favorites in the comments below!