Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8719923
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T06:54:49+00:00 2026-06-13T06:54:49+00:00

I’m trying to recreate the following font style in code: Upon looking closely, you

  • 0

I’m trying to recreate the following font style in code:

enter image description here

Upon looking closely, you will notice a lot of small details about this style. The style was made in photoshop with the following settings:

  • A white drop shadow for the highlight, 18% opacity, 2px size
  • A black inner glow at the top for recessed look with 2px size
  • A purple inner glow with hex color: #fd32ff at 28% opacity and 4px size

To recreate the drop shadow, I simply plan on setting the UILabel (which will contain the font) to have a drop shadow and color, like so:

myLabel.layer.shadowColor = [UIColor whiteColor].CGColor;
myLabel.layer.shadowOffset = CGSizeMake(0.0, 2.0);

Combining that with black font gets me somewhat close to the desired look…

Can anybody give me any tips to point me in the right direction for recreating that purple glow effect in code? Do I need to override draw rect for drawing the label and do something in there?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T06:54:50+00:00Added an answer on June 13, 2026 at 6:54 am

    This is pretty specific stuff… but in case anybody else wants to recreate this font, this is about as close as I got.

    You’ll have to get access to ProximaNova fonts and add them to your project as well.

    My solution to get 3 colors was to use 2 labels, one label implementing the “top two” colors, and one label implementing the last bottom color (white, in this case).

        UILabel *whiteDocumentNameLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 300, 35)];
        whiteDocumentNameLabel.backgroundColor = [UIColor clearColor];
        whiteDocumentNameLabel.textAlignment = UITextAlignmentCenter;
        whiteDocumentNameLabel.font = [UIFont fontWithName:@"ProximaNova-Bold" size:24];
        whiteDocumentNameLabel.text = @"MyText";
        whiteDocumentNameLabel.textColor = [UIColor colorWithRed:1 green:1 blue:1 alpha:.18];
    
        UILabel *documentNameLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, -1, whiteDocumentNameLabel.frame.size.width, whiteDocumentNameLabel.frame.size.height)];
        documentNameLabel.backgroundColor = [UIColor clearColor];
        documentNameLabel.textAlignment = UITextAlignmentCenter;
        documentNameLabel.font = whiteDocumentNameLabel.font;
        documentNameLabel.text = whiteDocumentNameLabel.text;;
        documentNameLabel.textColor = [UIColor blackColor];
        documentNameLabel.layer.shadowColor = [UIColor colorWithRed:253.0 / 255.0 green:50.0 / 255.0 blue:255.0 / 255.0 alpha:1].CGColor;
        documentNameLabel.layer.shadowRadius = .75;
        documentNameLabel.layer.shadowOpacity = .2;
        documentNameLabel.layer.shadowOffset = CGSizeMake(0, 0);
        [whiteDocumentNameLabel addSubview:documentNameLabel];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I used javascript for loading a picture on my website depending on which small
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I am trying to render a haml file in a javascript response like so:
I have this code to decode numeric html entities to the UTF8 equivalent character.
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.