For example, you want to set 40% alpha transparence to #000000 (black color), you need to add 66 like this #66000000.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Params } from '@angular/router'; | |
| import { BehaviorSubject } from 'rxjs'; | |
| export class MockActivatedRoute { | |
| private innerTestParams?: any; | |
| private subject?: BehaviorSubject<any> = new BehaviorSubject(this.testParams); | |
| params = this.subject.asObservable(); | |
| queryParams = this.subject.asObservable(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt-get update && \ | |
| sudo apt-get -qq -y install \ | |
| apt-transport-https \ | |
| ca-certificates \ | |
| curl \ | |
| git \ | |
| jq \ | |
| software-properties-common && \ | |
| curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - && \ | |
| sudo mkdir -p -m 0755 /etc/apt/keyrings && \ |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |