# Branding

Published articles for Branding.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## Adobe Is Testing Project Oasis, a Web-Based Design App, and Accepting Applications for Early Access

DevFeed: [Adobe Is Testing Project Oasis, a Web-Based Design App, and Accepting Applications for Early Access](<https://devfeed.tech/articles/adobe-has-a-secret-new-design-tool-and-you-can-apply-to-test-it-9264.md>)

Original publisher: [Read original article](<https://webdesignerdepot.com/adobe-has-a-secret-new-design-tool-and-you-can-apply-to-test-it/>)

Author: Alex Harper

Published: 2026-09-08T20:24:25Z

Content type: news

Language: en

Sources: [Web Designer Depot](<https://devfeed.tech/sources/web-designer-depot.md>)

Topics: [Web](<https://devfeed.tech/topics/web.md>), [App](<https://devfeed.tech/topics/app.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>)

Tags: [adobe](<https://devfeed.tech/tags/adobe.md>), [adobe-ai](<https://devfeed.tech/tags/adobe-ai.md>), [adobe-beta](<https://devfeed.tech/tags/adobe-beta.md>), [adobe-early-access](<https://devfeed.tech/tags/adobe-early-access.md>), [adobe-illustrator](<https://devfeed.tech/tags/adobe-illustrator.md>), [adobe-project-oasis](<https://devfeed.tech/tags/adobe-project-oasis.md>), [ai](<https://devfeed.tech/tags/ai.md>), [ai-design-tools](<https://devfeed.tech/tags/ai-design-tools.md>), [app](<https://devfeed.tech/tags/app.md>), [apply](<https://devfeed.tech/tags/apply.md>), [artificial-intelligence](<https://devfeed.tech/tags/artificial-intelligence.md>), [brand-design](<https://devfeed.tech/tags/brand-design.md>), [branding](<https://devfeed.tech/tags/branding.md>), [creative-ai](<https://devfeed.tech/tags/creative-ai.md>), [creative-tools](<https://devfeed.tech/tags/creative-tools.md>), [design-software](<https://devfeed.tech/tags/design-software.md>), [design-tools](<https://devfeed.tech/tags/design-tools.md>), [designer-resources](<https://devfeed.tech/tags/designer-resources.md>), [figma](<https://devfeed.tech/tags/figma.md>), [graphic-design](<https://devfeed.tech/tags/graphic-design.md>), [news](<https://devfeed.tech/tags/news.md>), [project-oasis](<https://devfeed.tech/tags/project-oasis.md>), [web](<https://devfeed.tech/tags/web.md>), [web-based-design](<https://devfeed.tech/tags/web-based-design.md>), [web-design](<https://devfeed.tech/tags/web-design.md>)

### AI overview

Adobe is testing Project Oasis, a browser-based graphic design app with a brand-aware AI focus. Designers working on branding and marketing can apply for early access, but the beta is under NDA and Adobe has not disclosed detailed features, pricing, screenshots, or a launch date.

### Source excerpt

Adobe is quietly testing a mysterious new web-based design tool called Project Oasis--and designers can apply to get inside. Details are scarce, the beta is under NDA, and Adobe isn't showing much yet... which only makes us want in more.

## From Permissions to Sessions: Rethinking Location Access in Android 17

DevFeed: [From Permissions to Sessions: Rethinking Location Access in Android 17](<https://devfeed.tech/articles/from-permissions-to-sessions-rethinking-location-access-in-android-17-25982.md>)

Original publisher: [Read original article](<https://proandroiddev.com/from-permissions-to-sessions-rethinking-location-access-in-android-17-5a13124b777d?source=rss-711ab22c5c77------2>)

Author: Nav Singh

Published: 2026-09-03T18:18:32Z

Content type: tutorial

Language: en

Sources: [Stories by Nav Singh 🇨🇦 on Medium](<https://devfeed.tech/sources/stories-by-nav-singh-on-medium.md>)

Topics: [Android](<https://devfeed.tech/topics/android.md>), [Jetpack Compose](<https://devfeed.tech/topics/jetpack-compose.md>), [Mobile](<https://devfeed.tech/topics/mobile.md>), [ui](<https://devfeed.tech/topics/ui.md>)

Tags: [android](<https://devfeed.tech/tags/android.md>), [android-development](<https://devfeed.tech/tags/android-development.md>), [android-permissions](<https://devfeed.tech/tags/android-permissions.md>), [android17](<https://devfeed.tech/tags/android17.md>), [androiddev](<https://devfeed.tech/tags/androiddev.md>), [branding](<https://devfeed.tech/tags/branding.md>), [consent](<https://devfeed.tech/tags/consent.md>), [how-to](<https://devfeed.tech/tags/how-to.md>), [implementation](<https://devfeed.tech/tags/implementation.md>), [jetpack](<https://devfeed.tech/tags/jetpack.md>), [jetpack-compose](<https://devfeed.tech/tags/jetpack-compose.md>), [layout](<https://devfeed.tech/tags/layout.md>), [permissions](<https://devfeed.tech/tags/permissions.md>)

### AI overview

A tutorial on implementing Android 17's system-rendered Location Button in Jetpack Compose applications. It explains session-only precise location access, the USE_LOCATION_BUTTON permission, the required Jetpack library, fallback rendering, and UI customization.

### Source excerpt

Image generated using Gemini In this article, we will learn how to implement the new 📍Location button introduced in Android 17 in Jetpack Compose-based Android applications. Android 17 adds a system-rendered 📍Location Button that we can drop into the layout via a Jetpack library, and tapping it gives the app precise location for that session only, gated by a new USE_LOCATION_BUTTON permission. What the feature is Android now exposes a system-owned, standard location button that we can embed in our UI instead of designing a custom control. When the user taps it, the system handles the permission flow, then grants the app precise location for the current session only, rather than long-lived access. How it changes permissions Instead of immediately requesting ACCESS_FINE_LOCATION (and maybe ACCESS_COARSE_LOCATION) at runtime, we declare the new USE_LOCATION_BUTTON permission to host the button. <!-- Standard Coarse and Fine Location Permissions + onlyForLocationButton --> <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" android:usesPermissionFlags="onlyForLocationButton"/> <!-- Required system permission for rendering the LocationButton --> <uses-permission android:name="android.permission.USE_LOCATION_BUTTON" />Developer benefits Less custom permission boilerplate: We lean on system UX and the Jetpack library for the hardest parts of location consent. [versions] locationbuttonCompose = "1.0.0-alpha01" [libraries] androidx-locationbutton-compose = { group = "androidx.core.locationbutton", name = "locationbutton-compose", version.ref = "locationbuttonCompose" } Higher trust and clarity for users: the control looks and behaves consistently across apps, and session-only precise access is easier to understand than broader access. Implementation As we all know, Android development is now Compose-first, so we will implement it using the LocationButton composable provided by th

## 25+ Free Minimal Fonts for Modern Design

DevFeed: [25+ Free Minimal Fonts for Modern Design](<https://devfeed.tech/articles/25-free-minimal-fonts-for-modern-design-9288.md>)

Original publisher: [Read original article](<https://speckyboy.com/free-minimal-fonts/>)

Author: Paul Andrew

Published: 2026-08-25T15:22:37Z

Content type: article

Language: en

Sources: [Speckyboy Design Magazine](<https://devfeed.tech/sources/speckyboy-design-magazine.md>)

Topics: [Font](<https://devfeed.tech/topics/font.md>), [Open Source](<https://devfeed.tech/topics/open-source.md>), [App](<https://devfeed.tech/topics/app.md>)

Tags: [branding](<https://devfeed.tech/tags/branding.md>), [design](<https://devfeed.tech/tags/design.md>), [display-fonts](<https://devfeed.tech/tags/display-fonts.md>), [fonts](<https://devfeed.tech/tags/fonts.md>), [geometric-fonts](<https://devfeed.tech/tags/geometric-fonts.md>), [legibility](<https://devfeed.tech/tags/legibility.md>), [logo-design](<https://devfeed.tech/tags/logo-design.md>), [minimal-design](<https://devfeed.tech/tags/minimal-design.md>), [monospace-fonts](<https://devfeed.tech/tags/monospace-fonts.md>), [open-source](<https://devfeed.tech/tags/open-source.md>), [post](<https://devfeed.tech/tags/post.md>), [readability](<https://devfeed.tech/tags/readability.md>), [sans-serif-fonts](<https://devfeed.tech/tags/sans-serif-fonts.md>), [serif-fonts](<https://devfeed.tech/tags/serif-fonts.md>), [typography-design](<https://devfeed.tech/tags/typography-design.md>), [ui](<https://devfeed.tech/tags/ui.md>), [web-fonts](<https://devfeed.tech/tags/web-fonts.md>)

### AI overview

A curated collection of free minimalist fonts for modern design, covering typefaces suited to branding, logos, posters, print, digital projects, and readable small text.

### Source excerpt

A curated collection of the best free fonts for minimalist design. Check out the full round-up and add them to your design library. The post 25+ Free Minimal Fonts for Modern Design appeared first on Speckyboy Design Magazine.

## Gotham Variable and the Art of Evolution

DevFeed: [Gotham Variable and the Art of Evolution](<https://devfeed.tech/articles/gotham-variable-and-the-art-of-evolution-9325.md>)

Original publisher: [Read original article](<https://www.printmag.com/type-tuesday/gotham-variable-and-the-art-of-evolution/>)

Author: Amelia Nash

Published: 2026-08-18T02:49:00Z

Content type: article

Language: en

Sources: [PRINT Magazine](<https://devfeed.tech/sources/print-magazine.md>)

Topics: [Monotype](<https://devfeed.tech/topics/monotype.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [artificial-intelligence](<https://devfeed.tech/tags/artificial-intelligence.md>), [brand-identity](<https://devfeed.tech/tags/brand-identity.md>), [branding](<https://devfeed.tech/tags/branding.md>), [branding-identity-design](<https://devfeed.tech/tags/branding-identity-design.md>), [design](<https://devfeed.tech/tags/design.md>), [design-culture](<https://devfeed.tech/tags/design-culture.md>), [design-journalism](<https://devfeed.tech/tags/design-journalism.md>), [design-systems](<https://devfeed.tech/tags/design-systems.md>), [design-topics](<https://devfeed.tech/tags/design-topics.md>), [gotham](<https://devfeed.tech/tags/gotham.md>), [graphic-design](<https://devfeed.tech/tags/graphic-design.md>), [legacy-brands](<https://devfeed.tech/tags/legacy-brands.md>), [monotype](<https://devfeed.tech/tags/monotype.md>), [post](<https://devfeed.tech/tags/post.md>), [strategy-plus-process](<https://devfeed.tech/tags/strategy-plus-process.md>), [type-design](<https://devfeed.tech/tags/type-design.md>), [type-tuesday](<https://devfeed.tech/tags/type-tuesday.md>), [typography](<https://devfeed.tech/tags/typography.md>), [variable-fonts](<https://devfeed.tech/tags/variable-fonts.md>)

### AI overview

Gotham Variable marks the typeface's 25th anniversary by expanding its fixed family into a continuous range of weight and width, adding 54 intermediate styles. The article presents this evolution as a way to support flexible contemporary brand systems, including AI-generated applications, while preserving Gotham's underlying identity.

### Source excerpt

As Gotham turns 25, Monotype is giving the iconic typeface room to evolve. With Gotham Variable, Sara Soskolne explores how legacy identities can embrace flexibility and new technologies -- including AI -- without losing the underlying logic that makes them recognizable. The post Gotham Variable and the Art of Evolution appeared first on PRINT Magazine.

## The branding for Intercom's AI summit looks like an alien superbloom

DevFeed: [The branding for Intercom's AI summit looks like an alien superbloom](<https://devfeed.tech/articles/the-branding-for-intercom-s-ai-summit-looks-like-an-alien-superbloom-9863.md>)

Original publisher: [Read original article](<https://www.figma.com/blog/intercom-pioneer-ai-summit-branding/>)

Author: Jenny Xie

Published: 2025-09-19T00:00:00Z

Content type: article

Language: en

Sources: [Figma Blog](<https://devfeed.tech/sources/figma-blog.md>)

Topics: [Figma](<https://devfeed.tech/topics/figma.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [ide](<https://devfeed.tech/topics/ide.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [branding](<https://devfeed.tech/tags/branding.md>), [customer-service](<https://devfeed.tech/tags/customer-service.md>), [design](<https://devfeed.tech/tags/design.md>), [design-systems](<https://devfeed.tech/tags/design-systems.md>), [events](<https://devfeed.tech/tags/events.md>), [figma](<https://devfeed.tech/tags/figma.md>), [summit](<https://devfeed.tech/tags/summit.md>)

### AI overview

Intercom's Creative Studio used Figma to develop the visual identity for Pioneer, its customer service and AI summit. The team explored broad creative concepts through mood boards, collaborated across disciplines, and embedded motion, imagery, and vector assets into a brand system spanning digital campaigns and the live event.

### Source excerpt

For the customer service and AI event Pioneer, Intercom's designers used Figma to create a visual language of surreal flowers and shape-shifting pollen.

## How we shaped the visual identity for Config 2025

DevFeed: [How we shaped the visual identity for Config 2025](<https://devfeed.tech/articles/how-we-shaped-the-visual-identity-for-config-2025-9819.md>)

Original publisher: [Read original article](<https://www.figma.com/blog/how-we-shaped-the-visual-identity-for-config-2025/>)

Author: Matt Alagiah

Published: 2025-07-03T00:00:00Z

Content type: article

Language: en

Sources: [Figma Blog](<https://devfeed.tech/sources/figma-blog.md>)

Topics: [Figma](<https://devfeed.tech/topics/figma.md>)

Tags: [2025](<https://devfeed.tech/tags/2025.md>), [branding](<https://devfeed.tech/tags/branding.md>), [collaboration](<https://devfeed.tech/tags/collaboration.md>), [design](<https://devfeed.tech/tags/design.md>), [developers](<https://devfeed.tech/tags/developers.md>), [event](<https://devfeed.tech/tags/event.md>), [figma](<https://devfeed.tech/tags/figma.md>)

### AI overview

Figma's Brand Studio explains how it developed the visual identity for Config 2025, an immersive conference experience spanning animated glyphs, spatial design, screens, badges, social media, and physical activations. The team began with flexible concepts rooted in expressive forms and primitives so the identity could evolve with the event.

### Source excerpt

From giant inflatable glyphs to welcoming soundscapes, Figma's Brand Studio designed an immersive conference that celebrated the spirit of makership at every turn.

## How Polaroid is building its next era of innovation

DevFeed: [How Polaroid is building its next era of innovation](<https://devfeed.tech/articles/how-polaroid-is-building-its-next-era-of-innovation-10010.md>)

Original publisher: [Read original article](<https://www.figma.com/blog/polaroid-digital-innovation/>)

Author: Nika Simovich Fisher

Published: 2025-05-05T00:00:00Z

Content type: article

Language: en

Sources: [Figma Blog](<https://devfeed.tech/sources/figma-blog.md>)

Topics: [Figma](<https://devfeed.tech/topics/figma.md>), [User experience (UX)](<https://devfeed.tech/topics/ux.md>), [App](<https://devfeed.tech/topics/app.md>), [Cloud](<https://devfeed.tech/topics/cloud.md>), [Android](<https://devfeed.tech/topics/android.md>), [iOS](<https://devfeed.tech/topics/ios.md>)

Tags: [android](<https://devfeed.tech/tags/android.md>), [apps](<https://devfeed.tech/tags/apps.md>), [branding](<https://devfeed.tech/tags/branding.md>), [camera](<https://devfeed.tech/tags/camera.md>), [cloud](<https://devfeed.tech/tags/cloud.md>), [components](<https://devfeed.tech/tags/components.md>), [design](<https://devfeed.tech/tags/design.md>), [development](<https://devfeed.tech/tags/development.md>), [figma](<https://devfeed.tech/tags/figma.md>), [innovation](<https://devfeed.tech/tags/innovation.md>), [ios](<https://devfeed.tech/tags/ios.md>), [mobile-apps](<https://devfeed.tech/tags/mobile-apps.md>), [photography](<https://devfeed.tech/tags/photography.md>), [remote](<https://devfeed.tech/tags/remote.md>), [scale](<https://devfeed.tech/tags/scale.md>), [tokens](<https://devfeed.tech/tags/tokens.md>), [ux](<https://devfeed.tech/tags/ux.md>), [workflows](<https://devfeed.tech/tags/workflows.md>)

### AI overview

The article describes how Polaroid is adapting its instant-photography brand for the digital age through new cameras, photo printers, and mobile apps. It explains how the team uses Figma to build and scale a design system, create reusable components, prototype, and collaborate across departments and remote teams while maintaining consistent digital experiences on iOS and Android.

### Source excerpt

Once on the brink of extinction, the company behind the beloved instant camera is reaching a new generation of users with a new approach to design, development, and branding.

## NixOS Logo and Branding Update

DevFeed: [NixOS Logo and Branding Update](<https://devfeed.tech/articles/nixos-logo-and-branding-update-38875.md>)

Original publisher: [Read original article](<https://nixos.org/blog/announcements/2025/nixos-logo-branding-updates/>)

Author: NixOS

Published: 2025-04-28T11:00:00Z

Content type: release

Language: en

Sources: [NixOS Announcements](<https://devfeed.tech/sources/nixos-announcements.md>)

Topics: [NixOS](<https://devfeed.tech/topics/nixos.md>), [Documentation](<https://devfeed.tech/topics/documentation.md>), [Font](<https://devfeed.tech/topics/font.md>)

Tags: [branding](<https://devfeed.tech/tags/branding.md>), [documentation](<https://devfeed.tech/tags/documentation.md>), [logo](<https://devfeed.tech/tags/logo.md>), [nixos](<https://devfeed.tech/tags/nixos.md>), [update](<https://devfeed.tech/tags/update.md>)

### AI overview

This announcement reviews the history of the NixOS logo and explains inconsistencies and ambiguities in its design and documentation, including geometry, gradients, logo anatomy, clearspace, and font guidance.

### Source excerpt

History The NixOS logo was originally designed by Simon Frankau for Haskell as part of the 2009 Haskell logo contest. Simon kindly gave permission for the design to be used by the NixOS project, and it was made official in November 2009. In 2015, a new version of the logo with a "hexagon design" was created by Tim Cuthbertson and added to the homepage. In March of 2017, it officially superseded the previous logo and was added to the nixos-artwork repository. Over the years, there have been many updates to the logo and repository, including: Converting the logotype to paths, removing the dependency on users having the designated font installed. Adding documentation about the font used to create the logotype, guide layers, and colors Introducing various logo variants, including a vertical variant, an all-white variant, and a rainbow variant Motivation to change An incredible amount of work has gone into creating and improving the logo and its documentation. However, it suffers from some inconsistencies and many parts of it are still ambiguous. The image below is a zoomed in view of the bottom of the NixOS logo with a horizontal line drawn starting at the bottom left of the snowflake. If you open the image and zoom in, you will see that the edges of the snowflake are not parallel to the horizontal line. Additionally, the edges of the snowflake are not collinear with each other. <img src="/images/blog/announcements/nixos-lambdas-not-collinear.jpg" alt="A zoomed in view of the bottom of the NixOS logo showing that the lambdas are not collinear or flat." style="display: block; margin: 0 auto; float: none; max-width: 100%; height: auto;" decoding="async" loading="lazy" /> The image below shows the paths that define the gradient for the lambdas. There are two gradient definitions that are different and ideally they would be the same. <img src="/images/blog/announcements/nixos-lambda-two-gradient-defs.jpg" alt="A view of the NixOS logo source showing two gradient definitions

## postmarketOS in 2025-02: MSM89x7 Audio, Modern Xiaomis in Community, New Name Foreshadowing

DevFeed: [postmarketOS in 2025-02: MSM89x7 Audio, Modern Xiaomis in Community, New Name Foreshadowing](<https://devfeed.tech/articles/postmarketos-in-2025-02-msm89x7-audio-modern-xiaomis-in-community-new-name-foreshadowing-41749.md>)

Original publisher: [Read original article](<https://postmarketos.org/blog/2025/03/04/pmOS-update-2025-02/>)

Published: 2025-03-04T00:00:00Z

Content type: article

Language: en

Sources: [postmarketOS Blog](<https://devfeed.tech/sources/postmarketos-blog.md>)

Topics: [Linux](<https://devfeed.tech/topics/linux.md>), [Open Source](<https://devfeed.tech/topics/open-source.md>), [boot](<https://devfeed.tech/topics/boot.md>)

Tags: [2025](<https://devfeed.tech/tags/2025.md>), [alpine-linux](<https://devfeed.tech/tags/alpine-linux.md>), [branding](<https://devfeed.tech/tags/branding.md>), [community](<https://devfeed.tech/tags/community.md>), [ideas](<https://devfeed.tech/tags/ideas.md>), [linux](<https://devfeed.tech/tags/linux.md>), [open-source](<https://devfeed.tech/tags/open-source.md>), [os](<https://devfeed.tech/tags/os.md>), [postmarketos](<https://devfeed.tech/tags/postmarketos.md>), [workshop](<https://devfeed.tech/tags/workshop.md>)

### AI overview

The postmarketOS project recaps February 2025 community events, including a mainlining workshop in Aachen and an open-source event in Tokyo. It also explains why the project is seeking a new, easier-to-pronounce name while keeping its logo and other branding unchanged, and invites community suggestions.

### Source excerpt

We already wrote plenty about FOSDEM 2025 and the Hackathon we did afterwards. But that was just the start of February! Two weeks later, a mainlining workshop in Aachen (DE) took place. Aelin organized it and posted some notes including "1 Xiaomi tablet now boots mainline quite well and can boot to system from UFS" and "it is damn hard to explain this to people with almost no technical knowledge in this area, but we tried our best and they learnt a lot". Another week later, Rob represented postmarketOS on the Saturday of the OSC 2025 Tokyo Spring event hosted at the Komazawa University in Tokyo (JP): "It was quite busy and several good discussions were held with different members of the Open-Source community." Thanks Aelin, Rob and all who came by! Post the Market: A New Fame We plan to give postmarketOS a new name. Back in 2017 when postmarketOS was first getting off the ground, this project was smaller scale. Just a port of Alpine Linux to devices abandoned by their manufacturers. Now, the year is 2025 and while many of our ports are still for devices past their manufacturer's supported period, we also have a lot of devices running postmarketOS far before they reach their official End of Life. For the Fairphone 4 and Fairphone 5 we even had ports on the day they were released! This is one of the reasons why we are looking for a new name. Another is that postmarketOS is not easy to pronounce. It is five syllables, including the OS at the end. To some it sounds more like a sentence than a name. Last but not least, the capitalization is a bit awkward at this point: Our official branding is postmarketOS with lowercase p, but of course people end up writing PostmarketOS (especially at the beginning of sentences) or even PostMarketOS. So we are looking for a new name! To be clear, we only want to change the name. The beloved logo and all the rest of our branding will stay the same. What's the new name? You tell us. Since postmarketOS isn't just the distro, but also the

## Dark Theme - CSS Migration

DevFeed: [Dark Theme - CSS Migration](<https://devfeed.tech/articles/dark-theme-css-migration-30952.md>)

Original publisher: [Read original article](<https://developerhub.io/blog/dark-theme-css-migration/>)

Author: Zaid Daba'een

Published: 2023-07-06T11:19:48Z

Content type: tutorial

Language: en

Sources: [DeveloperHub.io](<https://devfeed.tech/sources/developerhub-io.md>)

Topics: [Dark Mode](<https://devfeed.tech/topics/dark-mode.md>), [CSS](<https://devfeed.tech/topics/css.md>), [modern web development](<https://devfeed.tech/topics/modern-web-development.md>), [developer tooling](<https://devfeed.tech/topics/developer-tooling.md>)

Tags: [branding](<https://devfeed.tech/tags/branding.md>), [css](<https://devfeed.tech/tags/css.md>), [dark-mode](<https://devfeed.tech/tags/dark-mode.md>), [devtools](<https://devfeed.tech/tags/devtools.md>), [migration](<https://devfeed.tech/tags/migration.md>), [variables](<https://devfeed.tech/tags/variables.md>)

### AI overview

This tutorial explains DeveloperHub's new dark theme, including how to enable it, add a reader theme toggle, test it with DevTools, migrate custom CSS, and customize colors with CSS variables.

### Source excerpt

Dark theme is out now! Let those eyes rest.

## Inside Figma: tips from the team that builds Figma

DevFeed: [Inside Figma: tips from the team that builds Figma](<https://devfeed.tech/articles/inside-figma-tips-from-the-team-that-builds-figma-9858.md>)

Original publisher: [Read original article](<https://www.figma.com/blog/inside-figma-tips-from-the-team-that-builds-figma/>)

Author: Alia Fite

Published: 2021-03-03T00:00:00Z

Content type: article

Language: en

Sources: [Figma Blog](<https://devfeed.tech/sources/figma-blog.md>)

Topics: [Figma](<https://devfeed.tech/topics/figma.md>)

Tags: [branding](<https://devfeed.tech/tags/branding.md>), [design](<https://devfeed.tech/tags/design.md>), [engineering](<https://devfeed.tech/tags/engineering.md>), [explore](<https://devfeed.tech/tags/explore.md>), [figma](<https://devfeed.tech/tags/figma.md>), [inspiration](<https://devfeed.tech/tags/inspiration.md>), [livestream](<https://devfeed.tech/tags/livestream.md>), [product-design](<https://devfeed.tech/tags/product-design.md>), [prototyping](<https://devfeed.tech/tags/prototyping.md>), [remote](<https://devfeed.tech/tags/remote.md>), [research](<https://devfeed.tech/tags/research.md>), [team-building](<https://devfeed.tech/tags/team-building.md>), [themes](<https://devfeed.tech/tags/themes.md>), [use-cases](<https://devfeed.tech/tags/use-cases.md>), [video](<https://devfeed.tech/tags/video.md>), [work](<https://devfeed.tech/tags/work.md>)

### AI overview

Figma team members share practical tips, keyboard shortcuts, templates, and brainstorming methods from a livestream. The article highlights how Figma is used across product design, engineering, research, team-building, remote collaboration, and branding work.

### Source excerpt

In a recent livestream, Figmates across teams shared their favorite tips for using Figma, including keyboard shortcuts and templates for every skill level.

## Wi-Fi Certification with ESP32

DevFeed: [Wi-Fi Certification with ESP32](<https://devfeed.tech/articles/wi-fi-certification-with-esp32-13974.md>)

Original publisher: [Read original article](<https://developer.espressif.com/blog/wi-fi-certification-with-esp32/>)

Author: John Lee

Published: 2018-08-11T00:00:00Z

Content type: tutorial

Language: en

Sources: [Blog on Developer Portal](<https://devfeed.tech/sources/blog-on-developer-portal.md>)

Topics: [Wi-Fi](<https://devfeed.tech/topics/wi-fi.md>), [ESP32](<https://devfeed.tech/topics/esp32.md>), [Internet of things](<https://devfeed.tech/topics/iot.md>), [interoperability](<https://devfeed.tech/topics/interoperability.md>), [Security](<https://devfeed.tech/topics/security.md>), [Protocol (disambiguation)](<https://devfeed.tech/topics/protocol.md>), [Espressif](<https://devfeed.tech/topics/espressif.md>)

Tags: [blog](<https://devfeed.tech/tags/blog.md>), [branding](<https://devfeed.tech/tags/branding.md>), [building-products](<https://devfeed.tech/tags/building-products.md>), [certifications](<https://devfeed.tech/tags/certifications.md>), [company](<https://devfeed.tech/tags/company.md>), [compliance](<https://devfeed.tech/tags/compliance.md>), [esp32](<https://devfeed.tech/tags/esp32.md>), [fcc](<https://devfeed.tech/tags/fcc.md>), [homekit](<https://devfeed.tech/tags/homekit.md>), [interoperability](<https://devfeed.tech/tags/interoperability.md>), [iot](<https://devfeed.tech/tags/iot.md>), [marketing](<https://devfeed.tech/tags/marketing.md>), [module](<https://devfeed.tech/tags/module.md>), [money](<https://devfeed.tech/tags/money.md>), [protocol](<https://devfeed.tech/tags/protocol.md>), [regulatory](<https://devfeed.tech/tags/regulatory.md>), [security](<https://devfeed.tech/tags/security.md>), [source](<https://devfeed.tech/tags/source.md>), [us](<https://devfeed.tech/tags/us.md>), [wi-fi](<https://devfeed.tech/tags/wi-fi.md>), [wifi](<https://devfeed.tech/tags/wifi.md>)

### AI overview

This article explains Wi-Fi certification for IoT products using ESP32 modules. It distinguishes Wi-Fi Alliance certification from regulatory certification such as FCC approval, describes when Wi-Fi certification is required, and outlines derivative certification using already certified ESP32-WROVER and ESP32-WROOM-32D modules.

### Source excerpt

A fair number of questions come up regarding Wi-Fi certification for Wi-Fi enabled IoT products. Here is an attempt to answer some of the relevant ones. Wi-Fi certification is a program by Wi-Fi Alliance that ensures that products that pass certification adhere to the interoperability and security requirements as laid out in the standard. It tests for protocol compliance.

## Building an Uber App Clone in Java for a Full-Stack Mobile Apps Course

DevFeed: [Building an Uber App Clone in Java for a Full-Stack Mobile Apps Course](<https://devfeed.tech/articles/uber-vs-clone-spot-the-difference-19645.md>)

Original publisher: [Read original article](<https://www.codenameone.com/blog/uber/>)

Author: Shai Almog

Published: 2017-11-20T00:00:00Z

Content type: tutorial

Language: en

Sources: [CodeName One](<https://devfeed.tech/sources/codename-one.md>)

Topics: [Mobile](<https://devfeed.tech/topics/mobile.md>), [Java](<https://devfeed.tech/topics/java.md>), [Android](<https://devfeed.tech/topics/android.md>), [App](<https://devfeed.tech/topics/app.md>), [Code](<https://devfeed.tech/topics/code.md>)

Tags: [android](<https://devfeed.tech/tags/android.md>), [app](<https://devfeed.tech/tags/app.md>), [branding](<https://devfeed.tech/tags/branding.md>), [code](<https://devfeed.tech/tags/code.md>), [image](<https://devfeed.tech/tags/image.md>), [java](<https://devfeed.tech/tags/java.md>), [mobile](<https://devfeed.tech/tags/mobile.md>), [mobile-apps](<https://devfeed.tech/tags/mobile-apps.md>), [native](<https://devfeed.tech/tags/native.md>)

### AI overview

The article describes creating an Uber app clone in Java for a mobile app course. It compares the clone's Android login form with the native Uber app, prioritizes simple code over pixel-perfect reproduction, and discusses branding similarities across iOS and Android.

### Source excerpt

I've been working on creating a clone of the Uber app for our upcoming update of the Build Real World Full Stack Mobile Apps in Java course. There is a lot to go through there but the basics are surprisingly easy. E.g. this is the login form for the native Uber app on my Android device next to my clone mock code also on the same Android device... See if you can spot which one is mine. You can see a high resolution version of the image here:

## Faster and More Accessible: The New digitalocean.com

DevFeed: [Faster and More Accessible: The New digitalocean.com](<https://devfeed.tech/articles/faster-and-more-accessible-the-new-digitalocean-com-28817.md>)

Original publisher: [Read original article](<https://una.im/new-do/>)

Published: 2016-08-17T00:00:00Z

Content type: release

Language: en

Sources: [Una Kravets](<https://devfeed.tech/sources/una-kravets.md>)

Topics: [Digital Ocean](<https://devfeed.tech/topics/digital-ocean.md>), [Accessibility](<https://devfeed.tech/topics/accessibility.md>)

Tags: [accessibility](<https://devfeed.tech/tags/accessibility.md>), [branding](<https://devfeed.tech/tags/branding.md>), [digitalocean](<https://devfeed.tech/tags/digitalocean.md>), [performance](<https://devfeed.tech/tags/performance.md>)

### AI overview

DigitalOcean describes a unified site redesign with updated branding and improvements to accessibility, organization, and performance.

### Source excerpt

We unified the site with our updated branding, and also focused on improving digitalocean.com's accessibility, organization, and performance.

## Designing ClassPass for Android - touchlab

DevFeed: [Designing ClassPass for Android - touchlab](<https://devfeed.tech/articles/designing-classpass-for-android-touchlab-38112.md>)

Original publisher: [Read original article](<https://touchlab.co/2016-2-designing-the-classpass-experience-for-android>)

Published: 2016-02-19T19:56:55Z

Content type: article

Language: en

Sources: [Touchlab | Enterprise Mobile Innovation & Development](<https://devfeed.tech/sources/touchlab-enterprise-mobile-innovation-development.md>)

Topics: [Android](<https://devfeed.tech/topics/android.md>), [App](<https://devfeed.tech/topics/app.md>), [Material Design](<https://devfeed.tech/topics/material-design.md>), [iOS](<https://devfeed.tech/topics/ios.md>), [Toolbar](<https://devfeed.tech/topics/toolbar.md>)

Tags: [android](<https://devfeed.tech/tags/android.md>), [app](<https://devfeed.tech/tags/app.md>), [architecture](<https://devfeed.tech/tags/architecture.md>), [bottom-sheet](<https://devfeed.tech/tags/bottom-sheet.md>), [branding](<https://devfeed.tech/tags/branding.md>), [case-study](<https://devfeed.tech/tags/case-study.md>), [design](<https://devfeed.tech/tags/design.md>), [developers](<https://devfeed.tech/tags/developers.md>), [discovery](<https://devfeed.tech/tags/discovery.md>), [featured](<https://devfeed.tech/tags/featured.md>), [filter](<https://devfeed.tech/tags/filter.md>), [interface](<https://devfeed.tech/tags/interface.md>), [ios](<https://devfeed.tech/tags/ios.md>), [map](<https://devfeed.tech/tags/map.md>), [material-design](<https://devfeed.tech/tags/material-design.md>), [search](<https://devfeed.tech/tags/search.md>), [swipe](<https://devfeed.tech/tags/swipe.md>), [toolbar](<https://devfeed.tech/tags/toolbar.md>), [typography](<https://devfeed.tech/tags/typography.md>), [user](<https://devfeed.tech/tags/user.md>)

### AI overview

touchlab describes its design work adapting the ClassPass iOS experience for Android while preserving the product's branding and functionality. The article explains a unified map-and-results interface using search, filters, a bottom sheet, and an expandable toolbar.

### Source excerpt

In the summer of 2015, touchlab began working with ClassPass, that gives users access to a huge network of fitness facilities for a monthly subscription.

## Top 5 Color Scheme Tools

DevFeed: [Top 5 Color Scheme Tools](<https://devfeed.tech/articles/top-5-color-scheme-tools-22844.md>)

Original publisher: [Read original article](<http://androidessence.com/top-5-color-scheme-tools/>)

Author: Adam McNeilly

Published: 2015-09-21T00:00:00Z

Content type: article

Language: en

Sources: [Android Essence](<https://devfeed.tech/sources/android-essence.md>)

Topics: [LineageOS](<https://devfeed.tech/topics/lineageos.md>), [Material Design](<https://devfeed.tech/topics/material-design.md>), [App](<https://devfeed.tech/topics/app.md>), [Website](<https://devfeed.tech/topics/website.md>)

Tags: [android](<https://devfeed.tech/tags/android.md>), [applications](<https://devfeed.tech/tags/applications.md>), [branding](<https://devfeed.tech/tags/branding.md>), [design](<https://devfeed.tech/tags/design.md>), [developers](<https://devfeed.tech/tags/developers.md>), [material-design](<https://devfeed.tech/tags/material-design.md>), [palette](<https://devfeed.tech/tags/palette.md>), [tools](<https://devfeed.tech/tags/tools.md>)

### AI overview

A developer-focused overview of five tools for choosing color schemes in Android applications, including Material Design Specs, MaterialPalette, Paletton, Coolors, and Color Blender. It explains how the tools support palette selection, color combinations, and obtaining hex codes for app design.

### Source excerpt

When it comes to making an app, some of the biggest struggles developers face is outside of the code itself. What should I name the app? Who is my target audience? Or the one I struggle with the most: what colors should I use in my Android application? This last question does not have one right or wrong answer. For that reason, it is one of the hardest questions to answer. Thankfully, there are many tools out there to help you determine your applications color scheme, and these are my five favorites.

## Styling Chromecast Icons

DevFeed: [Styling Chromecast Icons](<https://devfeed.tech/articles/styling-chromecast-icons-30576.md>)

Original publisher: [Read original article](<https://ryanharter.com/blog/2015/03/styling-chromecast-icons/>)

Published: 2015-03-06T07:00:00Z

Content type: tutorial

Language: en

Sources: [Blogs on Ryan Harter](<https://devfeed.tech/sources/blogs-on-ryan-harter.md>)

Topics: [Development](<https://devfeed.tech/topics/development.md>), [Android](<https://devfeed.tech/topics/android.md>), [Material Design](<https://devfeed.tech/topics/material-design.md>), [User Experience](<https://devfeed.tech/topics/user-experience.md>)

Tags: [android](<https://devfeed.tech/tags/android.md>), [branding](<https://devfeed.tech/tags/branding.md>), [cast](<https://devfeed.tech/tags/cast.md>), [color](<https://devfeed.tech/tags/color.md>), [icons](<https://devfeed.tech/tags/icons.md>), [identity](<https://devfeed.tech/tags/identity.md>), [material-design](<https://devfeed.tech/tags/material-design.md>)

### AI overview

A tutorial on customizing the colors of the Google Cast action item in an Android app. It explains how MediaRouteActionProvider handles Cast connection states and why replacing support-library drawables is insufficient for designs requiring more than light and dark colors.

### Source excerpt

One of my favorite new devices from Google is the Chromecast. I have 3 throughout my house, and one for travel. It's great to have a cheap device that anyone can stream to. I've also had the pleasure of integrating Google Cast support on several apps in my freelancing business. These are usually pretty cut and dry, but I recently had a client who needed a custom Google Cast action item which was one of many colors, depending on where you are in the app.

## Competition App - Host a contest, powered by SoundCloud

DevFeed: [Competition App - Host a contest, powered by SoundCloud](<https://devfeed.tech/articles/competition-app-host-a-contest-powered-by-soundcloud-2013.md>)

Original publisher: [Read original article](<https://developers.soundcloud.com/blog//competition-app>)

Published: 2011-11-14T00:00:00Z

Content type: article

Language: en

Sources: [SoundCloud Backstage Blog](<https://devfeed.tech/sources/soundcloud-backstage-blog.md>)

Topics: [App](<https://devfeed.tech/topics/app.md>), [Open Source](<https://devfeed.tech/topics/open-source.md>), [Web](<https://devfeed.tech/topics/web.md>), [HTML5](<https://devfeed.tech/topics/html5.md>), [Mobile](<https://devfeed.tech/topics/mobile.md>), [iphone](<https://devfeed.tech/topics/iphone.md>), [Accessibility](<https://devfeed.tech/topics/accessibility.md>)

Tags: [accessibility](<https://devfeed.tech/tags/accessibility.md>), [announcements](<https://devfeed.tech/tags/announcements.md>), [app](<https://devfeed.tech/tags/app.md>), [branding](<https://devfeed.tech/tags/branding.md>), [html5](<https://devfeed.tech/tags/html5.md>), [iphone](<https://devfeed.tech/tags/iphone.md>), [mobile](<https://devfeed.tech/tags/mobile.md>), [open](<https://devfeed.tech/tags/open.md>), [open-source](<https://devfeed.tech/tags/open-source.md>), [web](<https://devfeed.tech/tags/web.md>)

### AI overview

The article introduces Competition, an open-source app powered by SoundCloud for hosting fan contests. It describes pages and features for presenting contests, submitting tracks, voting, commenting, sharing, and promoting prizes or creators. The app is designed for web and mobile participation, using an HTML5 player fallback and an elastic layout that adapts to device screen sizes.

### Source excerpt

Competitions are a great way to get your fans involved around a particular theme or release. They encourage original content creation and tend to be extremely viral due to the high level of self-promotion involved with participating. The infrastructure you choose to throw these contests on should be accessible from any device while also providing a nice aesthetic backdrop to apply your branding. Users should be able to submit, vote, and comment no matter where they're coming from: Web, iPhone, Facebook Tab, etc. Today we're putting forth an open-source app called Competition which we think is a great solution to the problem.

## The value in content as a commodity

DevFeed: [The value in content as a commodity](<https://devfeed.tech/articles/the-value-in-content-as-a-commodity-41041.md>)

Original publisher: [Read original article](<https://www.craigkerstiens.com/2008/06/09/The-value-in-content-as-a-commodity/>)

Author: Map

Published: 2008-06-10T02:22:55Z

Content type: opinion

Language: en

Sources: [Craig Kerstiens](<https://devfeed.tech/sources/craig-kerstiens.md>)

Topics: [Publishing](<https://devfeed.tech/topics/publishing.md>), [Google](<https://devfeed.tech/topics/google.md>)

Tags: [branding](<https://devfeed.tech/tags/branding.md>), [content](<https://devfeed.tech/tags/content.md>), [future](<https://devfeed.tech/tags/future.md>), [opinion](<https://devfeed.tech/tags/opinion.md>), [quality](<https://devfeed.tech/tags/quality.md>)

### AI overview

The article argues that as content becomes easier to produce and spreads more rapidly, the identity and reputation of its publisher become increasingly valuable. It predicts that personal brands may carry more influence than the companies associated with them and may help audiences find consistent, high-quality content.

### Source excerpt

There was a recent post over at ReadWriteWeb about how content is becoming a commodity. I don't believe many people would argue with this. While at first this wasn't something I viewed in a positive light the more I think over it the more I see some value in it. As content does become more and more of a commodity the value in who is publishing or producing that content goes up. Five years ago if someone would have talked about some trade-secret they learned about from Google many people would have perked up and listened. Today however rumors spread faster than ever and before you know it google calendars now predicts when your appointments are, puts them in your calendar, and sends you text messages with directions 30 minutes before each meeting. While this may very well happen some day, I'm pretty sure they won't be rolling it out next week. Now with so much content being produced and spread all over the place there is still some value in the quality of content (which there always has been). However, now there is much heavier focus on the source it came from. This comes to the principle of branding, and not necessarily like a wal-mart or coke brand, but a personal branding. My guess is that in the future, and by future I mean sooner than later (likely 2-3 years), personal brands as a whole will carry more weight than the companies they work for. Take for example Digg, when Digg makes some announcement or stance a few people listen and it does get noticed. But this is only when the content or opinion falls within the Digg world. Meanwhile when Kevin Rose makes an announcement many more people than just in the realm of Digg notice. He's a prime example of someone that has built a personal brand, he's name carries weight, and more so than just that of Digg, Pownce, or Revision3 (even though they are nearly one in the same). Some might view content becoming a commodity as a bit of a blow. I believe we will see more individuals emerge with an understanding of personal b